root/etc/rc.restart_webgui @ b39dc701
1 | 8b52f644 | Scott Ullrich | #!/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 | 04b44931 | Scott Ullrich | echo "Restarting webConfigurator..."; |
11 | |||
12 | 8b52f644 | Scott Ullrich | system_webgui_start(); |
13 | |||
14 | 28c4ed21 | Scott Ullrich | echo " done.\n\n"; |
15 | 04b44931 | Scott Ullrich | |
16 | 8b52f644 | Scott Ullrich | ?>
|