root/etc/rc.restart_webgui @ b39dc701
1 |
#!/usr/local/bin/php -f |
---|---|
2 |
|
3 |
<?php
|
4 |
|
5 |
require("config.inc"); |
6 |
require("functions.inc"); |
7 |
|
8 |
mwexec("killall -9 lighttpd"); |
9 |
|
10 |
echo "Restarting webConfigurator..."; |
11 |
|
12 |
system_webgui_start(); |
13 |
|
14 |
echo " done.\n\n"; |
15 |
|
16 |
?>
|