Compare commits

...

No commits in common. "v961" and "v963" have entirely different histories.
v961 ... v963

2 changed files with 33 additions and 14 deletions

17
etc/init/cron.conf Normal file
View File

@ -0,0 +1,17 @@
description "Startup Cron sheduling daemon"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started mountfs))
stop on runlevel [016]
console none
pre-start script
/sbin/CheckPid /var/run/fcron.pid
end script
respawn
exec /usr/sbin/fcron -f

View File

@ -12,6 +12,7 @@
#
#
if [ -d /var/install/sysvinit* ]; then
WDIR=`pwd`
cd etc/init.d
mkdir rc{0,1,2,3,4,5,6}.d
@ -26,3 +27,4 @@ for i in 2 3 4 5; do
cd ..
done
cd $WDIR
fi