diff options
author | Richard Narron <richard@aaazen.com> | 2015-01-11 07:12:54 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-01-11 07:13:21 +0700 |
commit | 6acfb016fdc8f057e03c2644fe2f1452fb6ee05d (patch) | |
tree | 656c39b1c162d5afcb5bc04d04970216d86a49eb /system/fcron/README | |
parent | f0eb71fc2057f1bdb6599ed7ad39503d271c35c4 (diff) | |
download | slackbuilds-6acfb016fdc8f057e03c2644fe2f1452fb6ee05d.tar.gz |
system/fcron: Fix README and doinstall.sh.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/fcron/README')
-rw-r--r-- | system/fcron/README | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/system/fcron/README b/system/fcron/README index d664aede05..d5e94c4649 100644 --- a/system/fcron/README +++ b/system/fcron/README @@ -16,7 +16,7 @@ So as root do this: Post Installation notes: ------------------------ -The Fcron installation creates a startup file called /etc/rc.d/rc.fcron +The Fcron installation creates a startup file called /etc/rc.d/rc.fcron To run this startup file automatically at system startup time, add an entry to the /etc/rc.d/rc.local file: @@ -25,3 +25,20 @@ add an entry to the /etc/rc.d/rc.local file: if [ -x /etc/rc.d/rc.fcron ]; then . /etc/rc.d/rc.fcron start fi + +To prevent the automatic startup of the existing crond daemon: + + 1) Turn off the execute bit on the crond binary: + + chmod -x /usr/sbin/crond + +And/or: + 2) Comment out the crond code in /etc/rc.d/rc.M + + #if [ -x /usr/sbin/crond ]; then + # /usr/sbin/crond -l notice + #fi + +To create an fcrontab for root from the sample-root-fcrontab.txt file: + + fcrontab sample-root-fcrontab.txt |