mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 05:13:58 -05:00
18 lines
247 B
Bash
18 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"
|