53639aebb7
way around. MFC after: 1 month Sponsored by: The FreeBSD Foundation
32 lines
397 B
Bash
32 lines
397 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: automount
|
|
# REQUIRE: nfsclient automountd
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="automount"
|
|
rcvar="autofs_enable"
|
|
start_cmd="automount_start"
|
|
stop_cmd="automount_stop"
|
|
required_modules="autofs"
|
|
|
|
automount_start()
|
|
{
|
|
|
|
/usr/sbin/automount ${automount_flags}
|
|
}
|
|
|
|
automount_stop()
|
|
{
|
|
|
|
/sbin/umount -At autofs
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|