We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc7aa08 commit 5b921e9Copy full SHA for 5b921e9
install/lib/install.lib.php
@@ -82,7 +82,11 @@ function get_distname() {
82
$relname = "(" . trim(trim($relname), "()") . ")";
83
$distname = 'Ubuntu';
84
$ver = reset($ver);
85
- $distid = 'debian40';
+ if($ver == "16.04") {
86
+ $distid = 'ubuntu1604';
87
+ } else {
88
+ $distid = 'debian40';
89
+ }
90
$distbaseid = 'debian';
91
$distver = $ver . $lts . " " . $relname;
92
swriteln("Operating System: " . $distver . "\n");
0 commit comments