diff options
author | Chris Buechler <cmb@pfsense.org> | 2010-02-27 00:41:34 -0500 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2010-02-27 00:41:34 -0500 |
commit | 9c94083f42b69cdab92e09f1869fc8f8b7988434 (patch) | |
tree | ec63b861e7d2b236a8fb7c9ee770003b3337ab13 | |
parent | 9a15a0a446279c717fdcec7992744d30b459b7d4 (diff) | |
download | pfsense-9c94083f42b69cdab92e09f1869fc8f8b7988434.zip pfsense-9c94083f42b69cdab92e09f1869fc8f8b7988434.tar.gz |
work around perms issue with filter reloads, and issue where filter reloads before apinger status is marked as down
-rw-r--r-- | etc/inc/vslb.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/vslb.inc b/etc/inc/vslb.inc index ac1bd4d..ca51d88 100644 --- a/etc/inc/vslb.inc +++ b/etc/inc/vslb.inc @@ -105,12 +105,12 @@ function slbd_configure() { $fda = fopen("{$g['varetc_path']}/apinger.conf", "w"); $apingerconfig = <<<EOD # pfSense apinger configuration file. Automatically Generated! -user "nobody" -group "nobody" +user "root" +group "wheel" pid_file "{$g['varrun_path']}/apinger.pid" status { file "/tmp/apinger.status" - interval 10s + interval 1s } alarm default { command on "/usr/bin/touch /tmp/filter_dirty" |