description "Startup autofs System for nis configuration files" author "Harald Kueller " 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