You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-freebsd/freebsd-sbin/files/idmapd.initd

21 lines
441 B

#!/sbin/openrc-run
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need rpcbind
}
start() {
ebegin "Starting NFS idmapd"
start-stop-daemon --start --quiet --exec \
/sbin/idmapd -- $idmapdopts
eend $? "Error starting NFS idmapd"
}
stop() {
ebegin "Stopping NFS idmapd"
start-stop-daemon --stop --quiet --exec /sbin/idmapd
eend $? "Error stopping NFS idmapd"
}