diff options
author | Jakob Schlyter <jakob@cvs.openbsd.org> | 2000-06-24 19:37:34 +0000 |
---|---|---|
committer | Jakob Schlyter <jakob@cvs.openbsd.org> | 2000-06-24 19:37:34 +0000 |
commit | fe9178d3d9b294beeaf83d547fc468369200ff76 (patch) | |
tree | 249b77aa832c13909b3c6e735796f2f980f7fe2d /etc | |
parent | 6e4a3c38dc9e54ea6dbdea168e1737fb60dca7e0 (diff) |
Do not start snmpd by default just because it is installed. ok theo@.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.local | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/rc.local b/etc/rc.local index 85d0efa075d..bd26113bd1c 100644 --- a/etc/rc.local +++ b/etc/rc.local @@ -1,4 +1,4 @@ -# $OpenBSD: rc.local,v 1.28 2000/06/13 18:29:48 deraadt Exp $ +# $OpenBSD: rc.local,v 1.29 2000/06/24 19:37:33 jakob Exp $ # site-specific startup actions, daemons, and other things which # can be done AFTER your system goes into securemode. For actions @@ -19,9 +19,9 @@ if [ -x /usr/local/sbin/cfsd ]; then fi fi -if [ -x /usr/local/sbin/snmpd ]; then - echo -n ' snmpd'; /usr/local/sbin/snmpd -fi +#if [ -x /usr/local/sbin/snmpd ]; then +# echo -n ' snmpd'; /usr/local/sbin/snmpd +#fi # set pcvt screen saver time to 5min (see scon(1) for more options) #if [ -x /usr/sbin/ispcvt -a -x /usr/sbin/scon ] && /usr/sbin/ispcvt; then |