aboutsummaryrefslogtreecommitdiff
path: root/miscutils/crond.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/crond.c')
-rw-r--r--miscutils/crond.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c
index 8d24f294c..6c54e1a8f 100644
--- a/miscutils/crond.c
+++ b/miscutils/crond.c
@@ -13,50 +13,50 @@
13//config: default y 13//config: default y
14//config: select FEATURE_SYSLOG 14//config: select FEATURE_SYSLOG
15//config: help 15//config: help
16//config: Crond is a background daemon that parses individual crontab 16//config: Crond is a background daemon that parses individual crontab
17//config: files and executes commands on behalf of the users in question. 17//config: files and executes commands on behalf of the users in question.
18//config: This is a port of dcron from slackware. It uses files of the 18//config: This is a port of dcron from slackware. It uses files of the
19//config: format /var/spool/cron/crontabs/<username> files, for example: 19//config: format /var/spool/cron/crontabs/<username> files, for example:
20//config: $ cat /var/spool/cron/crontabs/root 20//config: $ cat /var/spool/cron/crontabs/root
21//config: # Run daily cron jobs at 4:40 every day: 21//config: # Run daily cron jobs at 4:40 every day:
22//config: 40 4 * * * /etc/cron/daily > /dev/null 2>&1 22//config: 40 4 * * * /etc/cron/daily > /dev/null 2>&1
23//config: 23//config:
24//config:config FEATURE_CROND_D 24//config:config FEATURE_CROND_D
25//config: bool "Support option -d to redirect output to stderr" 25//config: bool "Support option -d to redirect output to stderr"
26//config: depends on CROND 26//config: depends on CROND
27//config: default y 27//config: default y
28//config: help 28//config: help
29//config: -d N sets loglevel (0:most verbose) and directs all output to stderr. 29//config: -d N sets loglevel (0:most verbose) and directs all output to stderr.
30//config: 30//config:
31//config:config FEATURE_CROND_CALL_SENDMAIL 31//config:config FEATURE_CROND_CALL_SENDMAIL
32//config: bool "Report command output via email (using sendmail)" 32//config: bool "Report command output via email (using sendmail)"
33//config: default y 33//config: default y
34//config: depends on CROND 34//config: depends on CROND
35//config: help 35//config: help
36//config: Command output will be sent to corresponding user via email. 36//config: Command output will be sent to corresponding user via email.
37//config: 37//config:
38//config:config FEATURE_CROND_SPECIAL_TIMES 38//config:config FEATURE_CROND_SPECIAL_TIMES
39//config: bool "Support special times (@reboot, @daily, etc) in crontabs" 39//config: bool "Support special times (@reboot, @daily, etc) in crontabs"
40//config: default y 40//config: default y
41//config: depends on CROND 41//config: depends on CROND
42//config: help 42//config: help
43//config: string meaning 43//config: string meaning
44//config: ------ ------- 44//config: ------ -------
45//config: @reboot Run once, at startup 45//config: @reboot Run once, at startup
46//config: @yearly Run once a year: "0 0 1 1 *" 46//config: @yearly Run once a year: "0 0 1 1 *"
47//config: @annually Same as @yearly: "0 0 1 1 *" 47//config: @annually Same as @yearly: "0 0 1 1 *"
48//config: @monthly Run once a month: "0 0 1 * *" 48//config: @monthly Run once a month: "0 0 1 * *"
49//config: @weekly Run once a week: "0 0 * * 0" 49//config: @weekly Run once a week: "0 0 * * 0"
50//config: @daily Run once a day: "0 0 * * *" 50//config: @daily Run once a day: "0 0 * * *"
51//config: @midnight Same as @daily: "0 0 * * *" 51//config: @midnight Same as @daily: "0 0 * * *"
52//config: @hourly Run once an hour: "0 * * * *" 52//config: @hourly Run once an hour: "0 * * * *"
53//config: 53//config:
54//config:config FEATURE_CROND_DIR 54//config:config FEATURE_CROND_DIR
55//config: string "crond spool directory" 55//config: string "crond spool directory"
56//config: default "/var/spool/cron" 56//config: default "/var/spool/cron"
57//config: depends on CROND || CRONTAB 57//config: depends on CROND || CRONTAB
58//config: help 58//config: help
59//config: Location of crond spool. 59//config: Location of crond spool.
60 60
61//applet:IF_CROND(APPLET(crond, BB_DIR_USR_SBIN, BB_SUID_DROP)) 61//applet:IF_CROND(APPLET(crond, BB_DIR_USR_SBIN, BB_SUID_DROP))
62 62