Files
Arquivotheca.Solaris-2.5/cmd/initpkg/init.d/autofs
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

33 lines
585 B
Bash
Executable File

#!/bin/sh
#
# Copyright (c) 1993, by Sun Microsystems, Inc.
#
#ident "@(#)autofs 1.3 94/05/18 SMI"
killproc() { # kill the named process(es)
pid=`/usr/bin/ps -e |
/usr/bin/grep $1 |
/usr/bin/sed -e 's/^ *//' -e 's/ .*//'`
[ "$pid" != "" ] && kill $pid
}
#
# Start/stop automounter
#
case "$1" in
'start')
/usr/lib/autofs/automountd > /dev/console 2>&1 # start daemon
/usr/sbin/automount & # do mounts
;;
'stop')
/sbin/umountall -F autofs # undo mounts
killproc automoun # kill daemon
;;
*)
echo "Usage: /etc/init.d/autofs { start | stop }"
;;
esac