Browse Source

split ypserv & ypbind startup; ypserv does not depend on you being a

client; from amh@POBOX.COM
OPENBSD_3_9
deraadt 19 years ago
parent
commit
4b310b828c
1 changed files with 7 additions and 4 deletions
  1. +7
    -4
      src/etc/rc

+ 7
- 4
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.272 2005/09/19 15:47:45 fgsch Exp $
# $OpenBSD: rc,v 1.273 2005/09/22 23:57:31 deraadt Exp $
# System startup script run by init on autoboot
# or after single-user.
@ -336,14 +336,17 @@ if [ X"${portmap}" = X"YES" ]; then
echo -n ' portmap'; portmap
fi
if [ -d /var/yp/binding -a X`domainname` != X ]; then
if [ X`domainname` != X ]; then
if [ -d /var/yp/`domainname` ]; then
# yp server capabilities needed...
# YP server capabilities needed...
echo -n ' ypserv'; ypserv ${ypserv_flags}
#echo -n ' ypxfrd'; ypxfrd
fi
echo -n ' ypbind'; ypbind
if [ -d /var/yp/binding ]; then
# YP client capabilities needed...
echo -n ' ypbind'; ypbind
fi
if [ X"${yppasswdd_flags}" != X"NO" -a -d /var/yp/`domainname` ]; then
# if we are the master server, run rpc.yppasswdd


Loading…
Cancel
Save