Der Check ob automount in /etc/nsswitch.conf vorhanden ist funktioniert wieder.

Ausserdem die Prozesserkennung präzisiert.



git-svn-id: svn://svn.compuextreme.de/Viitor/V962/Viitor_autofs@5834 504e572c-2e33-0410-9681-be2bf7408885
This commit is contained in:
kueller 2010-10-10 13:48:05 +00:00
parent b84f0661d3
commit db23a575d9
2 changed files with 14 additions and 2 deletions

View File

@ -12,13 +12,19 @@ pre-start script
source /etc/init/functions
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
if ps -ef|\
grep automount |\
grep nis |\
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
else
exit 10
fi
end script

View File

@ -12,7 +12,11 @@ pre-start script
source /etc/init/functions
if [ -f /etc/sysconfig/auto.master ] && grep automount /etc/nsswitch.conf|grep -q files; then
if [ -f /var/run/autofs/automount_files.pid ]; then
if ps -ef|awk '{print $2}'|grep -q `cat /var/run/autofs/automount_files.pid`; then
if ps -ef|\
grep automount |\
grep nis |\
awk '{print $2}'|\
grep -q `cat /var/run/autofs/automount_files.pid`; then
echo "Automount already running - not started"
exit 10
else
@ -20,6 +24,8 @@ pre-start script
rm /var/run/autofs/automount_files.pid
fi
fi
else
exit 10
fi
end script