system/fcron: Fix README and doinstall.sh.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
f0eb71fc20
commit
6acfb016fd
|
@ -25,3 +25,20 @@ add an entry to the /etc/rc.d/rc.local file:
|
||||||
if [ -x /etc/rc.d/rc.fcron ]; then
|
if [ -x /etc/rc.d/rc.fcron ]; then
|
||||||
. /etc/rc.d/rc.fcron start
|
. /etc/rc.d/rc.fcron start
|
||||||
fi
|
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
|
||||||
|
|
|
@ -24,5 +24,5 @@ preserve_perms() {
|
||||||
|
|
||||||
preserve_perms etc/rc.d/rc.fcron.new
|
preserve_perms etc/rc.d/rc.fcron.new
|
||||||
config etc/fcron.conf.new
|
config etc/fcron.conf.new
|
||||||
config etc/fcron.allow
|
config etc/fcron.allow.new
|
||||||
config etc/fcron.deny
|
config etc/fcron.deny.new
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
PRGNAM=fcron
|
PRGNAM=fcron
|
||||||
VERSION=${VERSION:-3.2.0}
|
VERSION=${VERSION:-3.2.0}
|
||||||
BUILD=${BUILD:-2}
|
BUILD=${BUILD:-3}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
# Select fcron's default user/group
|
# Select fcron's default user/group
|
||||||
|
|
|
@ -9,11 +9,11 @@
|
||||||
fcron: fcron (periodical command scheduler)
|
fcron: fcron (periodical command scheduler)
|
||||||
fcron:
|
fcron:
|
||||||
fcron: Fcron is a periodical command scheduler which aims at replacing
|
fcron: Fcron is a periodical command scheduler which aims at replacing
|
||||||
fcron: Vixie Cron and Anacron.
|
fcron: Vixie Cron and Anacron. Fcron works well on systems that are not
|
||||||
fcron:
|
fcron: continuously running such as laptops or desktops and it is loaded
|
||||||
fcron: Fcron works well on systems that are not continuously running such
|
fcrom: with features.
|
||||||
fcron: as laptops or desktops and it is loaded with features.
|
|
||||||
fcron:
|
fcron:
|
||||||
fcron: When a machine is powered on, Fcron can start jobs that were
|
fcron: When a machine is powered on, Fcron can start jobs that were
|
||||||
fcron: skipped while the machine was powered off.
|
fcron: skipped while the machine was powered off.
|
||||||
|
fcron:
|
||||||
fcron: Homepage: http://fcron.free.fr/
|
fcron: Homepage: http://fcron.free.fr/
|
||||||
|
|
Loading…
Reference in New Issue