Controlling Access to Cron
The /etc/cron.allow
and /etc/cron.deny
files are used to restrict access to cron. The format of both access control files is one username on each line. Whitespace is not permitted in either file. The cron daemon (crond
) does not have to be restarted if the access control files are modified. The access control files are read each time a user tries to add or delete a cron task.
The root user can always use cron, regardless of the usernames listed in the access control files.
If the file cron.allow
exists, only users listed in it are allowed to use cron, and the cron.deny
file is ignored.
If cron.allow
does not exist, users listed in cron.deny
are not allowed to use cron.