%PDF- %PDF-
| Direktori : /var/www/projetos/suporte.iigd.com.br/plugins/dashboard/front/sh/ |
| Current File : /var/www/projetos/suporte.iigd.com.br/plugins/dashboard/front/sh/issue.php |
<?php
Session::checkLoginUser();
Session::checkRight("profile", READ);
if(file_exists('/usr/bin/lsb_release')) {
echo substr(shell_exec('/usr/bin/lsb_release -ds'),0,21); //ubuntu - debian
}
elseif(file_exists('/etc/SuSE-release')) {
echo substr(shell_exec('head -1 /etc/SuSE-release'),0,22); //opensuse
}
elseif(file_exists('/etc/redhat-release')) {
echo substr(shell_exec('head -1 /etc/redhat-release'),0,21); //redhat - centOS
}
else {
echo "Linux";
}