";
}
?>
Strassenkind Server Status
";
} else {
echo "
";
}
?>
$command \n $output
\n
";
}
} else {
//run status command list otherwise
foreach ($status_commands as $command) {
if ($command != ""){
// === is here on purpose.
if (strpos($command, '>') === false) {
$command = $command . " 2>&1";
}
$output = shell_exec($command);
echo " $command
\n $output
\n
";
}
}
}
?>