Compare commits

...

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

2 changed files with 15 additions and 36 deletions

View File

@ -1,19 +0,0 @@
description "Samba Name Deamon"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on (runlevel [2345] and (started ifup))
stop on runlevel [016]
console output
pre-start script
if [ -f /etc/ntp.conf ]; then
/usr/bin/ntpdate `grep server /etc/ntp.conf|head --lines=1|sed -e "s/server //g"`
else
exit 10
fi
end script
exec /usr/bin/ntpd -n -l /var/log/ntp.log

View File

@ -32,20 +32,18 @@
# #
# #
if [ -d /var/install/sysvinit* ]; then WDIR=`pwd`
WDIR=`pwd` cd etc/init.d
cd etc/init.d chmod 755 ntp
chmod 755 ntp mkdir rc{0,1,2,3,4,5,6}.d
mkdir rc{0,1,2,3,4,5,6}.d for i in 0 1 2 6; do
for i in 0 1 2 6; do cd rc$i.d
cd rc$i.d ln -s ../ntp K75ntp
ln -s ../ntp K75ntp cd ..
cd .. done
done for i in 3 4 5; do
for i in 3 4 5; do cd rc$i.d
cd rc$i.d ln -s ../ntp S13ntp
ln -s ../ntp S13ntp cd ..
cd .. done
done cd $WDIR
cd $WDIR
fi