rewrote some stuff
parent
94d4de68ef
commit
5771bc2d15
|
@ -34,17 +34,8 @@ echo "Done.";
|
||||||
} else {
|
} else {
|
||||||
echo "<a href=\"\"><button> Return to regular status commands </button></a><hr />";
|
echo "<a href=\"\"><button> Return to regular status commands </button></a><hr />";
|
||||||
}
|
}
|
||||||
?>
|
function execute_command_list($commands){
|
||||||
<?php
|
foreach ($commands as $command) {
|
||||||
// run ondemand command list if demanded
|
|
||||||
if (isset($_POST['ondemand'])) {
|
|
||||||
foreach ($ondemand_commands as $command) {
|
|
||||||
$output = shell_exec($command);
|
|
||||||
echo "<pre class=\"commandLine\"> $command </pre>\n<pre class=\"commandLine\"> $output </pre>\n<hr />";
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
//run status command list otherwise
|
|
||||||
foreach ($status_commands as $command) {
|
|
||||||
if ($command != ""){
|
if ($command != ""){
|
||||||
// === is here on purpose.
|
// === is here on purpose.
|
||||||
if (strpos($command, '>') === false) {
|
if (strpos($command, '>') === false) {
|
||||||
|
@ -54,6 +45,15 @@ echo "Done.";
|
||||||
echo "<pre class=\"commandLine\"> $command </pre>\n<pre class=\"commandLine\"> $output </pre>\n<hr />";
|
echo "<pre class=\"commandLine\"> $command </pre>\n<pre class=\"commandLine\"> $output </pre>\n<hr />";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// run ondemand command list if demanded
|
||||||
|
if (isset($_POST['ondemand'])) {
|
||||||
|
execute_command_list($ondemand_commands);
|
||||||
|
} else {
|
||||||
|
//run status command list otherwise
|
||||||
|
execute_command_list($status_commands);
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue