summaryrefslogtreecommitdiffstats
path: root/etc/inc/pfsense-utils.inc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2007-03-29 04:53:20 +0000
committerScott Ullrich <sullrich@pfsense.org>2007-03-29 04:53:20 +0000
commita0ff31f252411bec5d1af14fbfcddffaf34229f4 (patch)
tree2ac864351211a383ccc4babd81e9f94b2cf5108d /etc/inc/pfsense-utils.inc
parent72aea38d12fce9e196f844efa44a009c04710670 (diff)
downloadpfsense-a0ff31f252411bec5d1af14fbfcddffaf34229f4.zip
pfsense-a0ff31f252411bec5d1af14fbfcddffaf34229f4.tar.gz
Correct the reload filter filename
Diffstat (limited to 'etc/inc/pfsense-utils.inc')
-rw-r--r--etc/inc/pfsense-utils.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc
index 15e10bd..788192e 100644
--- a/etc/inc/pfsense-utils.inc
+++ b/etc/inc/pfsense-utils.inc
@@ -59,7 +59,7 @@ function tdr_install_cron($should_install) {
$is_installed = false;
foreach($config['cron']['item'] as $item) {
$x=0;
- if(strstr($item['command'], "filter_configure_sync.sh")) {
+ if(strstr($item['command'], "filter_configure_sync")) {
$is_installed = true;
$x++;
}
@@ -74,7 +74,7 @@ function tdr_install_cron($should_install) {
$cron_item['month'] = "*";
$cron_item['wday'] = "*";
$cron_item['who'] = "root";
- $cron_item['command'] = "/etc/rc.filter_configure_sync.sh";
+ $cron_item['command'] = "/etc/rc.filter_configure_sync";
$config['cron']['item'][] = $cron_item;
write_config("Installed 15 minute filter reload for Time Based Rules");
configure_cron();
OpenPOWER on IntegriCloud