diff options
author | 1998-01-12 00:32:45 +0000 | |
---|---|---|
committer | 1998-01-12 00:32:45 +0000 | |
commit | d3e4df0e4da5bc3a37cabbc564aea9dbf0afc930 (patch) | |
tree | fb68a0fd189d54786336ff70e8194dd00384d092 | |
parent | disklabel spoofing for FAT32. (diff) | |
download | wireguard-openbsd-d3e4df0e4da5bc3a37cabbc564aea9dbf0afc930.tar.xz wireguard-openbsd-d3e4df0e4da5bc3a37cabbc564aea9dbf0afc930.zip |
to those who wants snmpd
-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 |