forked from dubiousjim/dcron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crond.8
236 lines (236 loc) · 8.05 KB
/
crond.8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
.TH CROND 8 "1 May 2011"
.SH NAME
.PP
crond - dillon's lightweight cron daemon
.SH SYNOPSIS
.PP
\f[B]crond [-s dir] [-c dir] [-t dir] [-m user\@host] [-M mailhandler] [-S|-L file] [-l loglevel] [-b|-f|-d]\f[]
.SH OPTIONS
.PP
\f[B]crond\f[] is a background daemon that parses individual
crontab files and executes commands on behalf of the users in
question.
.TP
.B -s dir
directory of system crontabs (defaults to /etc/cron.d)
.RS
.RE
.TP
.B -c dir
directory of per-user crontabs (defaults to
/var/spool/cron/crontabs)
.RS
.RE
.TP
.B -t dir
directory of timestamps for \@freq and FREQ=\&... jobs (defaults to
/var/spool/cron/cronstamps)
.RS
.RE
.TP
.B -m user\@host
where should the output of cronjobs be directed? (defaults to local
user) Some mail handlers (like msmtp) can't route mail to local
users.
If that's what you're using, then you should supply a remote
address using this switch.
Cron output for all users will be directed to that address.
Alternatively, you could supply a different mail handler using the
-M switch, to log or otherwise process the messages instead of
mailing them.
Alternatively, you could just direct the stdout and stderr of your
cron jobs to /dev/null.
.RS
.RE
.TP
.B -M mailhandler
Any output that cronjobs print to stdout or stderr gets formatted
as an email and piped to \f[C]/usr/sbin/sendmail\ -t\ -oem\ -i\f[].
Attempts to mail this are also logged.
This switch permits the user to substitute a different mailhandler,
or a script, for sendmail.
That custom mailhandler is called with no arguments, and with the
mail headers and cronjob output supplied to stdin.
When a custom mailhandler is used, mailing is no longer logged
(have your mailhandler do that if you want it).
When cron jobs generate no stdout or stderr, nothing is sent to
either sendmail or a custom mailhandler.
.RS
.RE
.TP
.B -S
log events to syslog, using syslog facility LOG_CRON and identity
`crond' (this is the default behavior).
.RS
.RE
.TP
.B -L file
log to specified file instead of syslog.
.RS
.RE
.TP
.B -l loglevel
log events at the specified, or more important, loglevels.
The default is `notice'.
Valid level names are as described in logger(1) and syslog(3):
alert, crit, debug, emerg, err, error (deprecated synonym for err),
info, notice, panic (deprecated synonym for emerg), warning, warn
(deprecated synonym for warning).
.RS
.RE
.TP
.B -b
run \f[B]crond\f[] in the background (default unless -d or -f is
specified)
.RS
.RE
.TP
.B -f
run \f[B]crond\f[] in the foreground.
All log messages are sent to stderr instead of syslog or a -L file.
.RS
.RE
.TP
.B -d
turn on debugging.
This option sets the logging level to `debug' and causes
\f[B]crond\f[] to run in the foreground.
.RS
.RE
.SH DESCRIPTION
.PP
\f[B]crond\f[] is responsible for scanning the crontab files and
running their commands at the appropriate time.
It always synchronizes to the top of the minute, matching the
current time against its internal list of parsed crontabs.
That list is stored so that it can be scanned very quickly, and
\f[B]crond\f[] can deal with several hundred crontabs with several
thousand entries without using noticeable CPU.
.PP
Cron jobs are not re-executed if a previous instance of them is
still running.
For example, if you have a crontab command \f[C]sleep\ 70\f[], that
you request to be run every minute, \f[B]crond\f[] will skip this
job when it sees it is still running.
So the job won't be run more frequently than once every two
minutes.
If you do not like this feature, you can run your commands in the
background with an \f[C]&\f[].
.PP
\f[B]crond\f[] automatically detects when the clock has been
changed, during its per-minute scans.
Backwards time-changes of an hour or less won't re-run cron jobs
from the intervening period.
\f[B]crond\f[] will effectively sleep until it catches back up to
the original time.
Forwards time-changes of an hour or less (or if the computer is
suspended and resumed again within an hour) will run any missed
jobs exactly once.
Changes greater than an hour in either direction cause
\f[B]crond\f[] to re-calculate when jobs should be run, and not
attempt to execute any missed commands.
This is effectively the same as if \f[B]crond\f[] had been stopped
and re-started.
.PP
For example, suppose it's 10 am, and a job is scheduled to run
every day at 10:30 am.
If you set the system's clock forward to 11 am, crond will
immediately run the 10:30 job.
If on the other hand you set the system's clock forward to noon,
the 10:30 am job will be skipped until the next day.
Jobs scheduled using \@daily and the like work differently; see
crontab(1) for details.
.PP
\f[B]crond\f[] has a number of built in limitations to reduce the
chance of it being ill-used.
Potentially infinite loops during parsing are dealt with via a
failsafe counter, and non-root crontabs are limited to 256 crontab
entries.
Crontab lines may not be longer than 1024 characters, including the
newline.
.PP
Whenever \f[B]crond\f[] must run a job, it first creates a
daemon-owned temporary file O_EXCL and O_APPEND to store any
output, then fork()s and changes its user and group permissions to
match that of the user the job is being run for, then
\f[B]exec\f[]s \f[B]/bin/sh -c \f[] to run the job.
The temporary file remains under the ownership of the daemon to
prevent the user from tampering with it.
Upon job completion, \f[B]crond\f[] verifies the secureness of the
mail file and, if it has been appended to, mails the file to the
specified address.
The \f[B]sendmail\f[] program (or custom mail handler, if supplied)
is run under the user's uid to prevent mail related security holes.
.PP
When a user edits their crontab, \f[B]crontab\f[] first copies the
crontab to a user owned file before running the user's preferred
editor.
The suid \f[B]crontab\f[] keeps an open descriptor to the file
which it later uses to copy the file back, thereby ensuring the
user has not tampered with the file type.
.PP
\f[B]crontab\f[] notifies \f[B]crond\f[] that a user's crontab file
has been modified (or created or deleted) through the
\[lq]cron.update\[rq] file, which resides in the per-user crontabs
directory (usually /var/spool/cron/crontabs).
\f[B]crontab\f[] appends the filename of the modified crontab file
to \[lq]cron.update\[rq]; and \f[B]crond\f[] inspects this file to
determine when to reparse or otherwise update its internal list of
parsed crontabs.
.PP
Whenever a \[lq]cron.update\[rq] file is seen, \f[B]crond\f[] also
re-reads timestamp files from its timestamp directory (usually
/var/spool/cron/cronstamps).
Normally these will just mirror \f[B]crond\f[]'s own internal
representations, but this mechanism could be used to manually
notify \f[B]crond\f[] that you've externally updated the
timestamps.
.PP
The \[lq]cron.update\[rq] file can also be used to ask
\f[B]crond\f[] to schedule a \[lq]named\[rq] cron job.
To do this, append a line of the form:
.IP
.nf
\f[C]
clio\ job1\ !job2
\f[]
.fi
.PP
to \[lq]cron.update\[rq].
This request that user clio's job1 should be scheduled (waiting
first for the successful completion of any jobs named in job1's
AFTER= tag), and job2 should also be scheduled (without waiting for
other jobs).
See crontab(1) for more about tags and named jobs.
.PP
The directory of per-user crontabs is re-parsed once every hour in
any case.
Any crontabs in the system directory (usually /etc/cron.d) are
parsed at the same time.
This directory can be used by packaging systems.
When you install a package foo, it might write its own foo-specific
crontab to /etc/cron.d/foo.
.PP
The superuser has a per-user crontab along with other users.
It usually resides at /var/spool/cron/crontabs/root.
.PP
Users can only have a crontab if they have an entry in /etc/passwd;
however they do not need to have login shell privileges.
Cron jobs are always run under /bin/sh; see crontab(1) for more
details.
.PP
Unlike \f[B]crontab\f[], the \f[B]crond\f[] program does not keep
open descriptors to crontab files while running their jobs, as this
could cause \f[B]crond\f[] to run out of descriptors.
.SH SEE ALSO
.PP
\f[B]crontab\f[](1)
.SH AUTHORS
.PP
Matthew Dillon (dillon\@apollo.backplane.com): original
developer
.PD 0
.P
.PD
Jim Pryor (profjim\@jimpryor.net): current
developer