root/etc/rc.restart_webgui @ 8bc95b43
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 |
captiveportal_configure(); |
15 |
|
16 |
enable_rrd_graphing(); |
17 |
|
18 |
echo " done.\n\n"; |
19 |
|
20 |
?>
|