Current Path : /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 : //etc/rc.d/ypbind |
#!/bin/sh # # $FreeBSD: release/9.1.0/etc/rc.d/ypbind 231792 2012-02-15 22:59:15Z dougb $ # # PROVIDE: ypbind # REQUIRE: ypserv # BEFORE: DAEMON # KEYWORD: shutdown . /etc/rc.subr name="ypbind" rcvar="nis_client_enable" load_rc_config $name command="/usr/sbin/${name}" command_args="${nis_client_flags}" start_precmd="ypbind_precmd" ypbind_precmd() { local _domain force_depend rpcbind || return 1 _domain=`domainname` if [ -z "$_domain" ]; then warn "NIS domainname(1) is not set." return 1 fi } run_rc_command "$1"