diff --git a/etc/init/ntpd.conf b/etc/init/ntpd.conf new file mode 100644 index 0000000..4e595e2 --- /dev/null +++ b/etc/init/ntpd.conf @@ -0,0 +1,19 @@ +description "Samba Name Deamon" +author "Harald Kueller " +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 diff --git a/init/genpkg b/init/genpkg index 71b138b..bfc5d05 100644 --- a/init/genpkg +++ b/init/genpkg @@ -32,18 +32,20 @@ # # -WDIR=`pwd` -cd etc/init.d -chmod 755 ntp -mkdir rc{0,1,2,3,4,5,6}.d -for i in 0 1 2 6; do - cd rc$i.d - ln -s ../ntp K75ntp - cd .. -done -for i in 3 4 5; do - cd rc$i.d - ln -s ../ntp S13ntp - cd .. -done -cd $WDIR +if [ -d /var/install/sysvinit* ]; then + WDIR=`pwd` + cd etc/init.d + chmod 755 ntp + mkdir rc{0,1,2,3,4,5,6}.d + for i in 0 1 2 6; do + cd rc$i.d + ln -s ../ntp K75ntp + cd .. + done + for i in 3 4 5; do + cd rc$i.d + ln -s ../ntp S13ntp + cd .. + done + cd $WDIR +fi