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

Added Support for Ubuntu 15.04 in OS detect code.

parent bd9fee74
No related branches found
No related tags found
No related merge requests found
......@@ -86,6 +86,9 @@ function get_distname() {
$mainver = array_filter($mainver);
$mainver = current($mainver).'.'.next($mainver);
switch ($mainver){
case "15.04":
$relname = "(Vivid Vervet)";
break;
case "14.10":
$relname = "(Utopic Unicorn)";
break;
......
......@@ -62,6 +62,9 @@ class monitor_tools {
$mainver = array_filter($mainver);
$mainver = current($mainver).'.'.next($mainver);
switch ($mainver){
case "15.04":
$relname = "(Vivid Vervet)";
break;
case "14.10":
$relname = "(Utopic Unicorn)";
break;
......
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