diff options
author | brian <brian@FreeBSD.org> | 1997-09-13 21:07:12 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1997-09-13 21:07:12 +0000 |
commit | 408c12b8a2edc6e55542ab0c2ab9b088a60e97f4 (patch) | |
tree | 6147915eb49458e27819f836ee1f1577730216bb /etc | |
parent | 234748494c55dfaebea37cef7758ea3cee0dea0f (diff) | |
download | FreeBSD-src-408c12b8a2edc6e55542ab0c2ab9b088a60e97f4.zip FreeBSD-src-408c12b8a2edc6e55542ab0c2ab9b088a60e97f4.tar.gz |
Change the not-specified-default for inetd & cron
to "enabled". This will avoid breaking things for
idiots like me who update /etc/rc without paying
attention and updating rc.conf too.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.135 1997/08/17 15:02:34 joerg Exp $ +# $Id: rc,v 1.136 1997/09/13 09:29:21 brian Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -218,11 +218,11 @@ ldconfig ${_LDC} # Now start up miscellaneous daemons that don't belong anywhere else # echo -n starting standard daemons: -if [ "X${inetd_enable}" = X"YES" ]; then +if [ "X${inetd_enable}" != X"NO" ]; then echo -n ' inetd'; inetd ${inetd_flags} fi -if [ "X${cron_enable}" = X"YES" ]; then +if [ "X${cron_enable}" != X"NO" ]; then echo -n ' cron'; cron fi |