diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-01-12 00:32:46 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-01-12 00:32:46 +0000 |
commit | 740274dee21c3d0467bf9c04a136cf898b5a0aaf (patch) | |
tree | 94cbf280753b72ad7d5293448e484a6b6f43f70b /etc/rc.local | |
parent | db22aed106ec8d06ec690eeeb424ea356ca12c5d (diff) |
to those who wants snmpd
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 |