blob: 1e12d23a321a06651bbe30a87fb7bd93c07c4693 (
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
|
#!/bin/ksh
#
# $OpenBSD: yppasswdd,v 1.6 2018/01/11 21:09:26 rpe Exp $
daemon="/usr/sbin/rpc.yppasswdd"
. /etc/rc.d/rc.subr
rc_reload=NO
rc_pre() {
[[ -n $(domainname) && -d /var/yp/$(domainname) ]] ||
return 1
_host1=$(ypwhich -m passwd 2> /dev/null)
_host2=$(hostname)
if [[ $(grep '^lookup' /etc/resolv.conf | grep yp | wc -c) -ne 0 ]]; then
_host1=$(ypmatch $_host1 hosts | cut -d' ' -f2)
_host2=$(ypmatch $_host2 hosts | cut -d' ' -f2 | head -1)
else
_host1=$(echo $_host1 | nslookup | grep '^Name: ' |
sed -e 's/^Name: //')
_host2=$(echo $_host2 | nslookup | grep '^Name: ' |
sed -e 's/^Name: //')
fi
[[ $_host2 == $_host1 ]]
}
rc_cmd $1
|