mirror of
https://github.com/ShaYmez/ezservermonitor-web.git
synced 2024-12-18 23:55:53 -05:00
System : better OS name detection
This commit is contained in:
parent
4952f02a7a
commit
b6d98b7f12
@ -9,6 +9,8 @@ $hostname = php_uname('n');
|
||||
if (!($os = shell_exec('/usr/bin/lsb_release -ds | cut -d= -f2 | tr -d \'"\'')))
|
||||
{
|
||||
if (!($os = shell_exec('cat /etc/system-release | cut -d= -f2 | tr -d \'"\'')))
|
||||
{
|
||||
if (!($os = shell_exec('cat /etc/os-release | grep PRETTY_NAME | tail -n 1 | cut -d= -f2 | tr -d \'"\'')))
|
||||
{
|
||||
if (!($os = shell_exec('find /etc/*-release -type f -exec cat {} \; | grep PRETTY_NAME | tail -n 1 | cut -d= -f2 | tr -d \'"\'')))
|
||||
{
|
||||
@ -16,6 +18,7 @@ if (!($os = shell_exec('/usr/bin/lsb_release -ds | cut -d= -f2 | tr -d \'"\'')))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
$os = trim($os, '"');
|
||||
$os = str_replace("\n", '', $os);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user