diff options
author | 1999-03-01 04:41:48 +0000 | |
---|---|---|
committer | 1999-03-01 04:41:48 +0000 | |
commit | 1cea13d2f54221ac504bdec94cf65ee31524c096 (patch) | |
tree | 9ced6a2b9de52834f17d1d283d68283c6bd5c269 | |
parent | re-do how copyright messages are done (diff) | |
download | wireguard-openbsd-1cea13d2f54221ac504bdec94cf65ee31524c096.tar.xz wireguard-openbsd-1cea13d2f54221ac504bdec94cf65ee31524c096.zip |
Don't print cfsd output on start.
-rw-r--r-- | etc/rc.local | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.local b/etc/rc.local index 8a87afc6401..c9ac69fdfd0 100644 --- a/etc/rc.local +++ b/etc/rc.local @@ -1,4 +1,4 @@ -# $OpenBSD: rc.local,v 1.23 1998/06/15 18:41:12 deraadt Exp $ +# $OpenBSD: rc.local,v 1.24 1999/03/01 04:41:48 fgsch Exp $ # site-specific startup actions, daemons, and other things which # can be done AFTER your system goes into securemode. For actions @@ -17,7 +17,7 @@ fi if [ -x /usr/local/sbin/cfsd ]; then if ps auxc | grep -q '^ *root .* mountd$'; then - echo -n ' cfsd'; /usr/local/sbin/cfsd + echo -n ' cfsd'; /usr/local/sbin/cfsd >/dev/null 2>&1 mount -o port=3049,nfsv2,intr localhost:/null /crypt else echo -n ' cfsd (failed, no mountd running)' |