Viitor_autofs/etc/init/autofs-nis.conf
kueller a7c835ee3d init files muessen fuer neue upstart version auf .conf enden. autofs_function wird nicht mehr benötigt
git-svn-id: svn://svn.compuextreme.de/Viitor/V962/Viitor_autofs@5515 504e572c-2e33-0410-9681-be2bf7408885
2010-04-20 14:01:45 +00:00

26 lines
719 B
Plaintext

description "Startup autofs System for nis configuration files"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on ( runlevel [2345] and ( started ypclient ))
stop on stopping ypclient
console output
script
source /etc/init/functions
source /etc/sysconfig/autofstime
if grep automount /etc/nsswitch.conf|grep -q nis; then
if [ /var/run/autofs/automount_nis.pid ]; then
if ps -ef|awk '{print $2}'|grep -q `cat /var/run/autofs/automount_nis.pid`; then
echo -n "Automount already running"
exit 10
else
rm /var/run/autofs/automount_nis.pid
fi
fi
automount -f -C -v -p /var/run/autofs/automount_nis.pid -t $TIMEOUT auto.master
fi
end script