2006-10-15 14:19:06 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: idmapd
|
|
|
|
# REQUIRE: rpcbind
|
2008-07-16 19:50:29 +00:00
|
|
|
# KEYWORD: nojail shutdown
|
2006-10-15 14:19:06 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="idmapd"
|
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
rcvar="idmapd_enable"
|
|
|
|
command="${idmapd:-/sbin/${name}}"
|
|
|
|
eval ${name}_flags=\"${idmapd_flags}\"
|
|
|
|
run_rc_command "$1"
|