CVS: moonbase/utils/vixie-cron crontab,1.1,1.2
Auke Kok
sofar at lunar-linux.org
Tue Dec 16 13:08:51 GMT 2003
Update of /var/cvs/lunar/moonbase/utils/vixie-cron
In directory dbguin.lunar-linux.org:/tmp/cvs-serv5205/vixie-cron
Modified Files:
crontab
Log Message:
Simplyfying crontabs... it should either be $(ls xxx/*) or just xxx/*
Index: crontab
===================================================================
RCS file: /var/cvs/lunar/moonbase/utils/vixie-cron/crontab,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- crontab 1 Mar 2003 06:55:09 -0000 1.1
+++ crontab 16 Dec 2003 13:08:49 -0000 1.2
@@ -3,7 +3,7 @@
#
# see man crontab(5) for more information about this file.
#
- at hourly root for i in ls /etc/cron.hourly/* ; do $i;done > /dev/null 2>&1
- at daily root for d in ls /etc/cron.daily/* ; do $d;done > /dev/null 2>&1
- at weekly root for w in ls /etc/cron.weekly/* ; do $w;done > /dev/null 2>&1
- at monthly root for m in ls /etc/cron.monthly/* ; do $m;done > /dev/null 2>&1
+ at hourly root for i in /etc/cron.hourly/* ; do $i ; done > /dev/null 2>&1
+ at daily root for d in /etc/cron.daily/* ; do $d ; done > /dev/null 2>&1
+ at weekly root for w in /etc/cron.weekly/* ; do $w ; done > /dev/null 2>&1
+ at monthly root for m in /etc/cron.monthly/* ; do $m ; done > /dev/null 2>&1
More information about the Lunar-commits
mailing list