summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorjkoshy <jkoshy@FreeBSD.org>1998-11-27 07:06:11 +0000
committerjkoshy <jkoshy@FreeBSD.org>1998-11-27 07:06:11 +0000
commite8d40b7bc13c2e24cdeb703a1b7573dbf0ef0746 (patch)
tree4f99265d1cc687d1ef453197104d65b975ad2e9f /etc
parent03c8e15ce9ae9d45f6e03a6f9f202f076ce39c5d (diff)
downloadFreeBSD-src-e8d40b7bc13c2e24cdeb703a1b7573dbf0ef0746.zip
FreeBSD-src-e8d40b7bc13c2e24cdeb703a1b7573dbf0ef0746.tar.gz
Direct std{err,out} to /dev/null when invoking sysctl(8) for setting
`nfs_access_cache_timeout'. Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
Diffstat (limited to 'etc')
-rw-r--r--etc/network.subr7
-rw-r--r--etc/rc.d/netoptions7
-rw-r--r--etc/rc.d/network17
-rw-r--r--etc/rc.d/network27
-rw-r--r--etc/rc.d/network37
-rw-r--r--etc/rc.d/routing7
-rw-r--r--etc/rc.network7
7 files changed, 28 insertions, 21 deletions
diff --git a/etc/network.subr b/etc/network.subr
index 12654f5..f632d55 100644
--- a/etc/network.subr
+++ b/etc/network.subr
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
+# $Id: rc.network,v 1.35 1998/11/15 20:30:04 msmith Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -258,8 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
- if [ ! "X${nfs_access_cache}" = X ]; then
- sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
+ if [ "X${nfs_access_cache}" != X ]; then
+ sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache} \
+ >/dev/null 2>&1
fi
fi
diff --git a/etc/rc.d/netoptions b/etc/rc.d/netoptions
index 12654f5..f632d55 100644
--- a/etc/rc.d/netoptions
+++ b/etc/rc.d/netoptions
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
+# $Id: rc.network,v 1.35 1998/11/15 20:30:04 msmith Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -258,8 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
- if [ ! "X${nfs_access_cache}" = X ]; then
- sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
+ if [ "X${nfs_access_cache}" != X ]; then
+ sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache} \
+ >/dev/null 2>&1
fi
fi
diff --git a/etc/rc.d/network1 b/etc/rc.d/network1
index 12654f5..f632d55 100644
--- a/etc/rc.d/network1
+++ b/etc/rc.d/network1
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
+# $Id: rc.network,v 1.35 1998/11/15 20:30:04 msmith Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -258,8 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
- if [ ! "X${nfs_access_cache}" = X ]; then
- sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
+ if [ "X${nfs_access_cache}" != X ]; then
+ sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache} \
+ >/dev/null 2>&1
fi
fi
diff --git a/etc/rc.d/network2 b/etc/rc.d/network2
index 12654f5..f632d55 100644
--- a/etc/rc.d/network2
+++ b/etc/rc.d/network2
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
+# $Id: rc.network,v 1.35 1998/11/15 20:30:04 msmith Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -258,8 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
- if [ ! "X${nfs_access_cache}" = X ]; then
- sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
+ if [ "X${nfs_access_cache}" != X ]; then
+ sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache} \
+ >/dev/null 2>&1
fi
fi
diff --git a/etc/rc.d/network3 b/etc/rc.d/network3
index 12654f5..f632d55 100644
--- a/etc/rc.d/network3
+++ b/etc/rc.d/network3
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
+# $Id: rc.network,v 1.35 1998/11/15 20:30:04 msmith Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -258,8 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
- if [ ! "X${nfs_access_cache}" = X ]; then
- sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
+ if [ "X${nfs_access_cache}" != X ]; then
+ sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache} \
+ >/dev/null 2>&1
fi
fi
diff --git a/etc/rc.d/routing b/etc/rc.d/routing
index 12654f5..f632d55 100644
--- a/etc/rc.d/routing
+++ b/etc/rc.d/routing
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
+# $Id: rc.network,v 1.35 1998/11/15 20:30:04 msmith Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -258,8 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
- if [ ! "X${nfs_access_cache}" = X ]; then
- sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
+ if [ "X${nfs_access_cache}" != X ]; then
+ sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache} \
+ >/dev/null 2>&1
fi
fi
diff --git a/etc/rc.network b/etc/rc.network
index 12654f5..f632d55 100644
--- a/etc/rc.network
+++ b/etc/rc.network
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.34 1998/11/11 05:23:44 peter Exp $
+# $Id: rc.network,v 1.35 1998/11/15 20:30:04 msmith Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -258,8 +258,9 @@ network_pass3() {
if [ "X${nfs_client_enable}" = X"YES" ]; then
echo -n ' nfsiod'; nfsiod ${nfs_client_flags}
- if [ ! "X${nfs_access_cache}" = X ]; then
- sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache}
+ if [ "X${nfs_access_cache}" != X ]; then
+ sysctl -w vfs.nfs.access_cache_timeout=${nfs_access_cache} \
+ >/dev/null 2>&1
fi
fi
OpenPOWER on IntegriCloud