2012-08-12 18:57:04 +02:00
|
|
|
Cronie contains the standard UNIX daemon crond that runs specified programs
|
|
|
|
at scheduled times and related tools. It is based on the original cron and
|
|
|
|
has security and configuration enhancements like the ability to use pam
|
|
|
|
and SELinux.
|
|
|
|
|
2013-06-21 04:00:35 +02:00
|
|
|
By default this SlackBuild will include anacron in the package. If you
|
|
|
|
don't want this, pass ANACRON=no to the SlackBuild.
|
2012-08-12 18:57:04 +02:00
|
|
|
|
|
|
|
Note that Slackware has dcron - Dillon's Cron daemon. This package will
|
2013-10-27 07:12:37 +01:00
|
|
|
conflict with dcron, so it is advised to remove dcron before installing
|
2012-08-12 18:57:04 +02:00
|
|
|
cronie:
|
|
|
|
|
2016-11-14 22:23:44 +01:00
|
|
|
Stop the dcron daemon and remove the dcron package:
|
|
|
|
# kill $(pgrep crond)
|
|
|
|
# removepkg dcron
|
|
|
|
# rm -rf /var/spool/cron
|
2012-08-12 18:57:04 +02:00
|
|
|
|
|
|
|
Slackware's boot script assumes that you have dcron and thus has to be
|
|
|
|
modified:
|
|
|
|
|
|
|
|
Change this line in /etc/rc.d/rc.M
|
2016-11-14 22:23:44 +01:00
|
|
|
/usr/sbin/crond -l notice
|
2012-08-12 18:57:04 +02:00
|
|
|
to:
|
2016-11-14 22:23:44 +01:00
|
|
|
/usr/sbin/crond
|