#!/bin/sh
#
# chkconfig: 345 72 28
# description: Runs the automount daemon that mounts devices and NFS hosts \
#	       on demand.
# processname: amd
# config: /etc/amd.conf
#

# Source function library.
. /etc/rc.d/init.d/functions

. /etc/sysconfig/amd

# See how we were called.
case "$1" in
  start)
	echo -n "Starting amd: "
	touch /var/lock/subsys/amd
	daemon /usr/sbin/amd -a $ADIR -l syslog $AMDOPTS -c 1000 $MOUNTPTS
	echo
	
	;;
  stop)
	echo -n "Shutting down amd: "
	killproc amd
	rm -f /var/lock/subsys/amd
	echo amd
	;;
  status)
	status amd
	;;
  restart|reload)
	killall -HUP amd
	;;
  *)
	echo "Usage: amd {start|stop|status|restart}"
	exit 1
esac

exit 0

