mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-20 07:14:26 +01:00
53639aebb7
way around. MFC after: 1 month Sponsored by: The FreeBSD Foundation
19 lines
247 B
Bash
19 lines
247 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: autounmountd
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="autounmountd"
|
|
rcvar="autofs_enable"
|
|
pidfile="/var/run/${name}.pid"
|
|
command="/usr/sbin/${name}"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|