diff options
Diffstat (limited to 'etc/rc.local')
-rw-r--r-- | etc/rc.local | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/rc.local b/etc/rc.local index c2949319e00..77a28ab51d6 100644 --- a/etc/rc.local +++ b/etc/rc.local @@ -1,4 +1,4 @@ -# $OpenBSD: rc.local,v 1.16 1998/01/11 02:02:08 angelos Exp $ +# $OpenBSD: rc.local,v 1.17 1998/01/12 00:32:45 mickey Exp $ # site-specific startup actions, daemons, and other things which # can be done AFTER your system goes into securemode. For actions @@ -23,6 +23,10 @@ if [ -f /usr/local/sbin/cfsd ]; then mount -o port=3049,nfsv2,intr localhost:/null /crypt fi +if [ -f /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 test -x /usr/sbin/ispcvt -a -x /usr/sbin/scon && /usr/sbin/ispcvt; then # echo -n ' scon'; /usr/sbin/scon -t 300 |