diff options
author | D. V. Serg <dvserg@pfsense.org> | 2007-07-16 07:24:33 +0000 |
---|---|---|
committer | D. V. Serg <dvserg@pfsense.org> | 2007-07-16 07:24:33 +0000 |
commit | cf931fe9afa0663dae156abc0e81749984463492 (patch) | |
tree | f0a5fec1472a95a591d8d382f92a067dec34f14a /packages/lightsquid/lightsquid.inc | |
parent | b719db9e2ea207881824b096b4ae2df2586f1032 (diff) | |
download | pfsense-packages-cf931fe9afa0663dae156abc0e81749984463492.tar.gz pfsense-packages-cf931fe9afa0663dae156abc0e81749984463492.tar.bz2 pfsense-packages-cf931fe9afa0663dae156abc0e81749984463492.zip |
Fix cron settings for update(30 min and 24h error settings)
Diffstat (limited to 'packages/lightsquid/lightsquid.inc')
-rw-r--r-- | packages/lightsquid/lightsquid.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/lightsquid/lightsquid.inc b/packages/lightsquid/lightsquid.inc index 4097c2db..153fdb00 100644 --- a/packages/lightsquid/lightsquid.inc +++ b/packages/lightsquid/lightsquid.inc @@ -225,7 +225,7 @@ function lightsquid_resync() { case 'lhp_6h': $on = true; $opt[0]= "0"; $opt[1]= "*/6"; break; case 'lhp_8h': $on = true; $opt[0]= "0"; $opt[1]= "*/8"; break; case 'lhp_12h': $on = true; $opt[0]= "0"; $opt[1]= "*/12"; break; - case 'lhp_24h': $on = true; $opt[0]= "0"; $opt[1]= "*/24"; break; + case 'lhp_24h': $on = true; $opt[0]= "0"; $opt[1]= "0"; $opt[2]= "*/24"; break; } ls_setup_cron("lightsquid_parser", $opt, CRONTAB_LS_JOBKEY, $on); } else |