diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-12-16 03:53:35 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-12-16 03:53:35 +0000 |
commit | 9f2f2ed20f1d6afa726d11eae045df9518fc1d23 (patch) | |
tree | d1bac7bdda6c476bd15c5f97483d5f1fee03f7d1 /etc | |
parent | 6a19fc38a6f46e2e1e2c95d9f152d1bcee7fa6d1 (diff) | |
download | pfsense-9f2f2ed20f1d6afa726d11eae045df9518fc1d23.zip pfsense-9f2f2ed20f1d6afa726d11eae045df9518fc1d23.tar.gz |
globals.inc is required so that we use the correct lock file!
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.prunecaptiveportal | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/rc.prunecaptiveportal b/etc/rc.prunecaptiveportal index 0d20f3d..691aea2 100755 --- a/etc/rc.prunecaptiveportal +++ b/etc/rc.prunecaptiveportal @@ -31,8 +31,9 @@ */ /* parse the configuration and include all functions used below */ - require_once("config.inc"); require_once("functions.inc"); + require_once("globals.inc"); + require_once("config.inc"); captiveportal_prune_old(); ?> |