mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Note that `rc' and `rc.shutdown' could not be imported because we already have files with those names.
21 lines
376 B
Bash
Executable file
21 lines
376 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $NetBSD: amd,v 1.6 2000/09/19 13:04:38 lukem Exp $
|
|
#
|
|
|
|
# PROVIDE: amd
|
|
# REQUIRE: rpcbind mountall ypbind
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="amd"
|
|
rcvar=$name
|
|
command="/usr/sbin/${name}"
|
|
load_rc_config $name
|
|
|
|
command_args='-p -a '$amd_dir' -F /etc/amd.conf >/var/run/amd.pid'
|
|
required_files="/etc/amd.conf"
|
|
required_dirs="$amd_dir"
|
|
required_vars="rpcbind"
|
|
|
|
run_rc_command "$1"
|