root/etc/rc.restart_webgui @ 3d72f9f9
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 |
captiveportal_configure(); |
14 |
|
15 |
echo " done.\n\n"; |
16 |
|
17 |
?>
|