Commit 1f97c54f authored by José Luis  Gutiérrez's avatar José Luis Gutiérrez Committed by Alessandro Rubini

/var/www/management.php adding halt-reboot-rw-ro features options

Adding new features to the management parts:
	- Halting system
	- Rebooting system
	- Remounting filesystem as rw
	- Remounting filesystem as ro
parent c1e3ecdb
......@@ -14,13 +14,24 @@
<br><br><br><br><br><br>
<center>
<form action="exe_program.php" method="post">
<input type="hidden" name="cmd" value="halt">
Halt system: <input type="hidden" name="cmd" value="halt">
<input type="submit" value="Halt switch">
</form>
<form action="exe_program.php" method="post">
<input type="hidden" name="cmd" value="reboot">
Reboot system: <input type="hidden" name="cmd" value="reboot">
<input type="submit" value="Reboot switch">
</form>
</form>
<form action="exe_program.php" method="post">
Mount partition as rw: <input type="hidden" name="cmd" value="rw">
<input type="submit" value="Remount">
</form>
</form>
<form action="exe_program.php" method="post">
Mount partition as ro: <input type="hidden" name="cmd" value="ro">
<input type="submit" value="Remount">
</form>
</center>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment