Viitor_upstart/etc/event.d/ypclient
kueller d10a955339 V962 Branch
git-svn-id: svn://svn.compuextreme.de/Viitor/V962/Viitor_upstart@4445 504e572c-2e33-0410-9681-be2bf7408885
2008-05-03 17:03:02 +00:00

22 lines
393 B
Plaintext

# rc - runlevel compatibility
#
# This task guesses what the "default runlevel" should be and starts the
# appropriate script.
start on started rpc
stop on stopping rpc
console output
pre-start script
if [ -f /etc/sysconfig/nis/defaultdomain ]; then
domainname `cat /etc/sysconfig/nis/defaultdomain`
/usr/sbin/ypbind
sleep 2
fi
end script
post-stop script
pkill ypbind
end script