Browse Source

Check whether /etc/inetd.conf exists before starting inetd (chuck@snew.com)

OPENBSD_2_9
angelos 23 years ago
parent
commit
da8f1ef537
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/etc/rc

+ 2
- 2
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.160 2000/12/30 07:59:27 angelos Exp $
# $OpenBSD: rc,v 1.161 2001/01/16 04:08:35 angelos Exp $
# System startup script run by init on autoboot
# or after single-user.
@ -465,7 +465,7 @@ if [ "X${smtpfwdd_flags}" != X"NO" ]; then
fi
if [ X${inetd} = X"YES" ]; then
if [ X${inetd} = X"YES" -a -e /etc/inetd.conf ]; then
echo -n ' inetd'; inetd
fi


Loading…
Cancel
Save