diff options
| author | Gordon Tetlow <gordon@FreeBSD.org> | 2002-08-14 05:44:32 +0000 |
|---|---|---|
| committer | Gordon Tetlow <gordon@FreeBSD.org> | 2002-08-14 05:44:32 +0000 |
| commit | 88f7d3e22bfb37ad223b34c25e04c3f72d5557b1 (patch) | |
| tree | 74908b5b57031bedcbdeb25a3f0895ecc0a0e4b5 /etc/rc.d/rpcbind | |
| parent | 2ee93c5780c44f76d7b80571604e1ad8eefa6896 (diff) | |
Notes
Diffstat (limited to 'etc/rc.d/rpcbind')
| -rwxr-xr-x | etc/rc.d/rpcbind | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/etc/rc.d/rpcbind b/etc/rc.d/rpcbind index 191d6deba277..a11da1f82ade 100755 --- a/etc/rc.d/rpcbind +++ b/etc/rc.d/rpcbind @@ -11,25 +11,14 @@ . /etc/rc.subr name="rpcbind" - -# XXX - Executable may be in a different location. The $name variable -# is different from the variable in rc.conf(5) so the -# subroutines in rc.subr won't catch it. -# -load_rc_config $name +rcvar=`set_rcvar` +command="/usr/sbin/${name}" case `${CMD_OSTYPE}` in -FreeBSD) - pidfile= - rcvar="portmap_enable" - command="${portmap_program:-/usr/sbin/${name}}" - eval ${name}_flags=\"${portmap_flags}\" - ;; NetBSD) - rcvar=$name - command="/usr/sbin/${name}" pidfile="/var/run/${name}.pid" ;; esac +load_rc_config $name run_rc_command "$1" |
