Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
678 B

#!/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