diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2007-01-29 04:09:12 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2007-01-29 04:09:12 +0000 |
commit | 1071e028a5b7cd229cdcc30feacedb1e09069894 (patch) | |
tree | 940af601baa92648f100fdf808dc4e121ad0ab10 /conf.default/config.xml | |
parent | f2025e919e0cb7819db59e684c337f653aa6cc02 (diff) | |
download | pfsense-1071e028a5b7cd229cdcc30feacedb1e09069894.zip pfsense-1071e028a5b7cd229cdcc30feacedb1e09069894.tar.gz |
Backport cron handling from HEAD.
Patches-submitted-by: DSH@
Diffstat (limited to 'conf.default/config.xml')
-rw-r--r-- | conf.default/config.xml | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/conf.default/config.xml b/conf.default/config.xml index abc7376..47bebdc 100644 --- a/conf.default/config.xml +++ b/conf.default/config.xml @@ -523,6 +523,80 @@ </proxyarpnet> --> </proxyarp> + <cron> + <item> + <minute>0</minute> + <hour>*</hour> + <mday>*</mday> + <month>*</month> + <wday>*</wday> + <who>root</who> + <command>/usr/bin/nice -n20 newsyslog</command> + </item> + <item> + <minute>1,31</minute> + <hour>0-5</hour> + <mday>*</mday> + <month>*</month> + <wday>*</wday> + <who>root</who> + <command>/usr/bin/nice -n20 adjkerntz -a</command> + </item> + <item> + <minute>1</minute> + <hour>*</hour> + <mday>1</mday> + <month>*</month> + <wday>*</wday> + <who>root</who> + <command>/usr/bin/nice -n20 /etc/rc.update_bogons.sh</command> + </item> + <item> + <minute>*/60</minute> + <hour>*</hour> + <mday>*</mday> + <month>*</month> + <wday>*</wday> + <who>root</who> + <command>/usr/bin/nice -n20 /usr/local/sbin/expiretable -v -t 3600 sshlockout</command> + </item> + <item> + <minute>1</minute> + <hour>1</hour> + <mday>*</mday> + <month>*</month> + <wday>*</wday> + <who>root</who> + <command>/usr/bin/nice -n20 /etc/rc.dyndns.update</command> + </item> + <item> + <minute>*/60</minute> + <hour>*</hour> + <mday>*</mday> + <month>*</month> + <wday>*</wday> + <who>root</who> + <command>/usr/bin/nice -n20 /usr/local/sbin/expiretable -v -t 3600 virusprot</command> + </item> + <item> + <minute>*/60</minute> + <hour>*</hour> + <mday>*</mday> + <month>*</month> + <wday>*</wday> + <who>root</who> + <command>/usr/bin/nice -n20 /usr/local/sbin/expiretable -t 1800 snort2c</command> + </item> + <item> + <minute>*/5</minute> + <hour>*</hour> + <mday>*</mday> + <month>*</month> + <wday>*</wday> + <who>root</who> + <command>/usr/local/bin/checkreload.sh</command> + </item> + </cron> <wol> <!-- <wolentry> |