]> git.pld-linux.org Git - packages/autofs.git/blame - autofs.init
- Added the option for turning on and off the use of YP
[packages/autofs.git] / autofs.init
CommitLineData
32959511 1#!/bin/sh
797fe9d4 2#
a38f2977 3# autofs automatically mounts filesystems when you use them,
4# and unmounts them later when you are not using them.
797fe9d4 5#
a38f2977 6# chkconfig: 2345 72 08
797fe9d4 7#
a38f2977 8# description: Script for automount using a Sun-style "master map".
9# We first look for a local /etc/autofs/auto.master, then a YP
10# map with that name
797fe9d4 11#
964cdbbb 12# processname: autofs
a38f2977 13# config: /etc/autofs/auto.master
797fe9d4 14
a38f2977 15
16# Source function library
797fe9d4 17. /etc/rc.d/init.d/functions
18
a38f2977 19# Get network config
20. /etc/sysconfig/network
21
d2ed1b07 22# Demon specified configuration.
733b034a 23[ -f /etc/sysconfig/autofs ] && . /etc/sysconfig/autofs
d2ed1b07 24
a38f2977 25# Check that networking is up.
733b034a 26if is_no "${NETWORKING}"; then
27 # nls "ERROR: Networking is down. %s can't be run." <service>
01c3d7f2 28 msg_network_down automounter
733b034a 29 exit 1
e0d6e433 30fi
733b034a 31
d2ed1b07 32DAEMON=/usr/sbin/automount
797fe9d4 33
34#
35# This function will build a list of automount commands to execute in
36# order # to activate all the mount points. It is used to figure out
37# the difference of automount points in case of a reload
38#
aacfd6e1 39getmounts()
797fe9d4 40{
41#
2dfbde63 42# Check for local maps to be loaded
797fe9d4 43#
44if [ -f /etc/autofs/auto.master ]
45then
46 cat /etc/autofs/auto.master | sed -e '/^#/d' -e '/^$/d'| (
47 while read dir map options
48 do
49 if [ ! -z "$dir" -a ! -z "$map" \
50 -a x`echo "$map" | cut -c1` != 'x-' ]
51 then
2dfbde63 52 map=`echo "/etc/autofs/$map" | sed -e 's:^/etc\/autofs//:/:'`
53 options=`echo "$options" | sed -e 's/\(^\|[ \t]\)-/\1/g'`
797fe9d4 54 if [ -x $map ]; then
d2ed1b07 55 echo "$DAEMON --timeout $TIMEOUT $dir program $map $options"
797fe9d4 56 elif [ -f $map ]; then
d2ed1b07 57 echo "$DAEMON --timeout $TIMEOUT $dir file $map $options"
797fe9d4 58 else
d2ed1b07 59 echo "$DAEMON --timeout $TIMEOUT $dir `basename $map` $options"
797fe9d4 60 fi
61 fi
62 done
63 )
64fi
65
66#
2dfbde63 67# Check for YellowPage maps to be loaded
797fe9d4 68#
ab90884a 69if is_yes $USE_YP; then
797fe9d4 70if [ -e /usr/bin/ypcat ] && [ `ypcat -k auto.master 2>/dev/null | wc -l` -gt 0 ]
71then
72 ypcat -k auto.master | (
73 while read dir map options
74 do
75 if [ ! -z "$dir" -a ! -z "$map" \
76 -a x`echo "$map" | cut -c1` != 'x-' ]
77 then
78 map=`echo "$map" | sed -e 's/^auto_/auto./'`
79 if echo $options | grep -- '-t' >/dev/null 2>&1 ; then
80 mountoptions="--timeout $(echo $options | \
81 sed 's/^.*-t\(imeout\)*[ \t]*\([0-9][0-9]*\).*$/\2/g')"
82 fi
2dfbde63 83 options=`echo "$options" | sed -e '
84 s/--*t\(imeout\)*[ \t]*[0-9][0-9]*//g
85 s/\(^\|[ \t]\)-/\1/g'`
d2ed1b07 86 echo "$DAEMON --timeout $TIMEOUT $mountoptions $dir yp $map $options"
797fe9d4 87 fi
88 done
89 )
90fi
ab90884a 91fi
797fe9d4 92}
93
94#
95# See how we were called.
96#
97case "$1" in
98 start)
a38f2977 99 # Check if the service is already running?
964cdbbb 100 if [ ! -f /var/lock/subsys/autofs ]; then
733b034a 101 msg_starting automounter
a38f2977 102 busy
2dfbde63 103 if getmounts | sh; then
104 deltext;ok
105 else
106 deltext;ok
107 fi
733b034a 108 RETVAL=$?
964cdbbb 109 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/autofs
e8a0884c 110 else
01c3d7f2 111 msg_already_running automounter
733b034a 112 exit 1
797fe9d4 113 fi
114 ;;
115 stop)
964cdbbb 116 if [ -f /var/lock/subsys/autofs ]; then
733b034a 117 msg_stopping automount -TERM
118 killproc automount
964cdbbb 119 rm -f /var/lock/subsys/autofs >/dev/null 2>&1
733b034a 120 else
01c3d7f2 121 msg_not_running automounter
733b034a 122 exit 1
123 fi
797fe9d4 124 ;;
3478dede 125 restart|reload)
aacfd6e1 126 $0 stop
127 $0 start
797fe9d4 128 ;;
129 status)
130 echo "Configured Mount Points:"
131 getmounts
132 echo ""
133 echo "Active Mount Points:"
aba83489 134 ps axw|grep "[0-9]:[0-9][0-9] /usr/sbin/automount " | (
797fe9d4 135 while read pid tt stat time command; do echo $command; done
136 )
137 ;;
138 *)
3478dede 139 msg_usage "$0 {start|stop|restart|reload|status}"
797fe9d4 140 exit 1
141esac
142
733b034a 143exit $RETVAL
This page took 0.093889 seconds and 4 git commands to generate.