blob: 05eab12160d49a05a818d28cac9695286d7f14d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/usr/local/bin/php -f
<?php
require("config.inc");
require("functions.inc");
require("shaper.inc");
require("captiveportal.inc");
require("rrd.inc");
echo "Restarting webConfigurator...";
sigkillbyname("lighttpd", "KILL");
while (is_process_running("lighttpd")) {
echo '.';
sleep(1);
}
system_webgui_start();
captiveportal_init_webgui();
enable_rrd_graphing();
echo " done.\n\n";
?>
|