Skip to content

Commit 4613498

Browse files
author
Till Brehm
committed
Added Ubuntu 16.10 in OS detection code.
1 parent e8d2fd2 commit 4613498

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

install/lib/install.lib.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ function get_distname() {
9292
$mainver = $ver;
9393
}
9494
switch ($mainver){
95+
case "16.10":
96+
$relname = "(Yakkety Yak)";
97+
$distconfid = 'ubuntu1604';
98+
break;
9599
case "16.04":
96100
$relname = "(Xenial Xerus)";
97101
$distconfid = 'ubuntu1604';

server/lib/classes/monitor_tools.inc.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ function get_distname() {
8787
$mainver = $ver;
8888
}
8989
switch ($mainver){
90+
case "16.10":
91+
$relname = "(Yakkety Yak)";
92+
$distconfid = 'ubuntu1604';
93+
break;
9094
case "16.04":
9195
$relname = "(Xenial Xerus)";
9296
$distconfid = 'ubuntu1604';

0 commit comments

Comments
 (0)