]> git.pld-linux.org Git - packages/autofs.git/blame - autofs.init
- outdated (I assume)
[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#
7590d9df 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 \
a38f2977 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.
5fd65513 26if is_yes "${NETWORKING}"; then
48741d3e 27 if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
5fd65513 28 # nls "ERROR: Networking is down. %s can't be run." <service>
29 msg_network_down automounter
30 exit 1
31 fi
32else
33 exit 0
e0d6e433 34fi
733b034a 35
d2ed1b07 36DAEMON=/usr/sbin/automount
797fe9d4 37
38#
39# This function will build a list of automount commands to execute in
40# order # to activate all the mount points. It is used to figure out
41# the difference of automount points in case of a reload
42#
aacfd6e1 43getmounts()
797fe9d4 44{
45#
2dfbde63 46# Check for local maps to be loaded
797fe9d4 47#
86f60339 48if [ -f /etc/autofs/auto.master ]; then
5fd65513 49 cat /etc/autofs/auto.master | sed -e '/^#/d' -e '/^$/d'| (
50 while read dir map options; do
51 if [ ! -z "$dir" -a ! -z "$map" \
52 -a x`echo "$map" | cut -c1` != 'x-' ]; then
d537f7f8
ER
53 maptype=`echo $map | cut -f1 -d:`
54 if [ "$maptype" = "$map" ]; then
5fd65513 55 map=`echo "/etc/autofs/$map" | sed -e 's:^/etc\/autofs//:/:'`
56 options=`echo "$options" | sed -e 's/\(^\|[ \t]\)-/\1/g'`
57 if [ -x $map ]; then
58 echo "$DAEMON --timeout $TIMEOUT $dir program $map $options"
59 elif [ -f $map ]; then
60 echo "$DAEMON --timeout $TIMEOUT $dir file $map $options"
61 else
62 echo "$DAEMON --timeout $TIMEOUT $dir `basename $map` $options"
63 fi
d537f7f8
ER
64 else
65 map=`echo $map | cut -f2- -d:`
66 if [ ! -z "$map" ]; then
67 if [ "$maptype" = "file" ]; then
68 map=`echo "/etc/autofs/$map" | sed -e 's:^/etc\/autofs//:/:'`
69 fi
70 echo "$DAEMON --timeout $TIMEOUT $dir $maptype $map $options"
71 fi
72 fi
797fe9d4 73 fi
797fe9d4 74 done
5fd65513 75 )
797fe9d4 76fi
77
78#
2dfbde63 79# Check for YellowPage maps to be loaded
797fe9d4 80#
ab90884a 81if is_yes $USE_YP; then
5fd65513 82 if [ -e /usr/bin/ypcat ] && \
83 [ `ypcat -k auto.master 2>/dev/null | wc -l` -gt 0 ]; then
84 ypcat -k auto.master | (
85 while read dir map options; do
86 if [ ! -z "$dir" -a ! -z "$map" \
87 -a x`echo "$map" | cut -c1` != 'x-' ]; then
88 map=`echo "$map" | sed -e 's/^auto_/auto./'`
89 if echo $options | \
90 grep -- '-t' >/dev/null 2>&1; then
91 mountoptions="--timeout $(echo $options | \
92 sed 's/^.*-t\(imeout\)*[ \t]*\([0-9][0-9]*\).*$/\2/g')"
93 fi
94 options=`echo "$options" | sed -e '
95 s/--*t\(imeout\)*[ \t]*[0-9][0-9]*//g
96 s/\(^\|[ \t]\)-/\1/g'`
97 echo "$DAEMON --timeout $TIMEOUT $mountoptions \
98 $dir yp $map $options"
99 fi
100 done
101 )
102 fi
ab90884a 103fi
797fe9d4 104}
105
f897d0ea 106RETVAL=0
c6b81892 107# See how we were called.
797fe9d4 108case "$1" in
109 start)
a38f2977 110 # Check if the service is already running?
964cdbbb 111 if [ ! -f /var/lock/subsys/autofs ]; then
86f60339 112 msg_starting automounter
a38f2977 113 busy
c6b81892 114 getmounts | sh
86f60339 115 RETVAL=$?
c6b81892 116 [ $RETVAL -eq 0 ] && ok || fail
964cdbbb 117 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/autofs
e8a0884c 118 else
86f60339 119 msg_already_running automounter
797fe9d4 120 fi
121 ;;
122 stop)
86f60339 123 if [ -f /var/lock/subsys/autofs ]; then
5fd65513 124 msg_stopping automounter
86f60339 125 killproc automount
126 rm -f /var/lock/subsys/autofs >/dev/null 2>&1
127 else
128 msg_not_running automounter
86f60339 129 fi
797fe9d4 130 ;;
c6b81892 131 restart|force-reload)
aacfd6e1 132 $0 stop
133 $0 start
c6b81892 134 exit $?
797fe9d4 135 ;;
136 status)
86f60339 137 nls "Configured Mount Points:"
797fe9d4 138 getmounts
139 echo ""
86f60339 140 nls "Active Mount Points:"
aba83489 141 ps axw|grep "[0-9]:[0-9][0-9] /usr/sbin/automount " | (
797fe9d4 142 while read pid tt stat time command; do echo $command; done
143 )
144 ;;
145 *)
c6b81892 146 msg_usage "$0 {start|stop|restart|force-reload|status}"
147 exit 3
797fe9d4 148esac
149
733b034a 150exit $RETVAL
This page took 0.073696 seconds and 4 git commands to generate.