blob: d735c2644a54303f3d9229f43d71b2086ca46346 (
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
|
#!/sbin/runscript
depend() {
need net portmap
}
checkconfig() {
if [ -z "$YP_DOMAIN" ] ; then
eerror "You need to setup YP_DOMAIN /etc/rc.conf"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting ypbind"
ypdomainname "$YP_DOMAIN"
start-stop-daemon --start --quiet --exec /usr/sbin/ypbind
if [ -n "$?" ] ; then
notfound=1
for i in 0 1 2 3 4 5 6 7 8 9
do
ypwhich &>/dev/null && { notfound=0; break; }
sleep 1
done
if [ $notfound -eq 1 ] ; then
eend 1 "No NIS server found"
fi
else
eend $?
fi
}
stop() {
ebegin "Stopping ypbind"
start-stop-daemon --stop --quiet --exec /usr/sbin/ypbind
# Remove binding files, if ypbind "forgets" it
rm -f /var/yp/binding/*
}
|