Current Path : /usr/src/etc/rc.d/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/etc/rc.d/statd |
#!/bin/sh # # FreeBSD History: src/etc/rc.d/nfslocking,v 1.11 2004/10/07 13:55:26 mtm Exp # $FreeBSD: release/9.1.0/etc/rc.d/statd 231792 2012-02-15 22:59:15Z dougb $ # # PROVIDE: statd # REQUIRE: nfsclient nfsd rpcbind # BEFORE: DAEMON # KEYWORD: nojail shutdown . /etc/rc.subr name="statd" rcvar=rpc_statd_enable command="/usr/sbin/rpc.${name}" start_precmd='statd_precmd' # Make sure that we are either an NFS client or server, and that we get # the correct flags from rc.conf(5). # statd_precmd() { force_depend rpcbind || return 1 rc_flags=${rpc_statd_flags} } load_rc_config $name run_rc_command $1