Compare commits

..

No commits in common. "v962" and "v963" have entirely different histories.
v962 ... v963

2 changed files with 2 additions and 25 deletions

View File

@ -11,18 +11,7 @@ console output
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|\
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
/sbin/CheckPid /var/run/autofs/automount_nis.pid
else
exit 10
fi

View File

@ -11,19 +11,7 @@ console none
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|\
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
echo -n "Removing old files"
rm /var/run/autofs/automount_files.pid
fi
fi
CheckPid /var/run/autofs/automount_files.pid
else
exit 10
fi