blob: 3cb98076b0468840704f32d5b0ff614cd3d03aae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/bin/sh
#
# $NetBSD: yppasswdd,v 1.6 2002/03/22 04:34:01 thorpej Exp $
# $FreeBSD$
#
# PROVIDE: yppasswdd
# REQUIRE: ypserv ypbind
# BEFORE: LOGIN
# KEYWORD: FreeBSD NetBSD
. /etc/rc.subr
name="yppasswdd"
command="/usr/sbin/rpc.{name}"
start_precmd="yppasswdd_precmd"
case `${CMD_OSTYPE}` in
FreeBSD)
rcvar="nis_yppasswdd_enable"
required_vars="portmap_enable nis_server_enable"
command_args="${nis_yppasswdd_flags}"
;;
NetBSD)
rcvar=$name
required_vars="rpcbind ypserv"
;;
esac
yppasswdd_precmd()
{
_domain=`domainname`
if [ -z "$_domain" ]; then
warn "domainname(1) is not set."
return 1
fi
}
load_rc_config $name
run_rc_command "$1"
|