Skip to content
Snippets Groups Projects
Commit 4613498c authored by Till Brehm's avatar Till Brehm
Browse files

Added Ubuntu 16.10 in OS detection code.

parent e8d2fd26
No related branches found
No related tags found
No related merge requests found
......@@ -92,6 +92,10 @@ function get_distname() {
$mainver = $ver;
}
switch ($mainver){
case "16.10":
$relname = "(Yakkety Yak)";
$distconfid = 'ubuntu1604';
break;
case "16.04":
$relname = "(Xenial Xerus)";
$distconfid = 'ubuntu1604';
......
......@@ -87,6 +87,10 @@ class monitor_tools {
$mainver = $ver;
}
switch ($mainver){
case "16.10":
$relname = "(Yakkety Yak)";
$distconfid = 'ubuntu1604';
break;
case "16.04":
$relname = "(Xenial Xerus)";
$distconfid = 'ubuntu1604';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment