Viitor_autofs/etc/init/autofs-nis.conf

26 lines
719 B
Plaintext
Raw Normal View History

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 [ -f /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 -p /var/run/autofs/automount_nis.pid -t $TIMEOUT auto.master
fi
end script