root/etc/rc.restart_webgui @ 86d5553e
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 | d5b7b3cc | Scott Ullrich | |
14 | 3d72f9f9 | Scott Ullrich | captiveportal_configure(); |
15 | 8b52f644 | Scott Ullrich | |
16 | d5b7b3cc | Scott Ullrich | enable_rrd_graphing(); |
17 | |||
18 | 28c4ed21 | Scott Ullrich | echo " done.\n\n"; |
19 | 04b44931 | Scott Ullrich | |
20 | 8b52f644 | Scott Ullrich | ?>
|