blob: 7a0bcd3c8641b11c6d5f1f5fbc55bb2c0244d5e8 (
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-cgi -f
<?php
require("config.inc");
require("functions.inc");
require("shaper.inc");
require("captiveportal.inc");
require_once("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";
?>
|