summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/netoptions
diff options
context:
space:
mode:
authormtm <mtm@FreeBSD.org>2008-06-23 04:00:45 +0000
committermtm <mtm@FreeBSD.org>2008-06-23 04:00:45 +0000
commite01154eb3a51571240a8d6b08dd06f9618a1bb37 (patch)
treedd04cc47006daa7c923c405524f275d2d3801dfb /etc/rc.d/netoptions
parente3f330d43d688bc4b1309e576028e312f48b9230 (diff)
downloadFreeBSD-src-e01154eb3a51571240a8d6b08dd06f9618a1bb37.zip
FreeBSD-src-e01154eb3a51571240a8d6b08dd06f9618a1bb37.tar.gz
Do not print anything unless one of the net/routing options is set.
Diffstat (limited to 'etc/rc.d/netoptions')
-rw-r--r--etc/rc.d/netoptions19
1 files changed, 17 insertions, 2 deletions
diff --git a/etc/rc.d/netoptions b/etc/rc.d/netoptions
index 7104952..51d5f79 100644
--- a/etc/rc.d/netoptions
+++ b/etc/rc.d/netoptions
@@ -9,9 +9,17 @@
. /etc/rc.subr
+_netoptions_initdone=
+netoptions_init()
+{
+ if [ -z "${_netoptions_initdone}" ]; then
+ echo -n 'Additional TCP/IP options:'
+ _netoptions_initdone=yes
+ fi
+}
+
load_rc_config 'XXX'
-echo -n 'Additional IP options:'
case ${log_in_vain} in
[Nn][Oo] | '')
log_in_vain=0
@@ -22,12 +30,14 @@ case ${log_in_vain} in
[0-9]*)
;;
*)
+ netoptions_init
echo " invalid log_in_vain setting: ${log_in_vain}"
log_in_vain=0
;;
esac
[ "${log_in_vain}" -ne 0 ] && (
+ netoptions_init
echo -n " log_in_vain=${log_in_vain}"
sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null
sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null
@@ -37,6 +47,7 @@ case ${tcp_extensions} in
[Yy][Ee][Ss] | '')
;;
*)
+ netoptions_init
echo -n ' tcp extensions=NO'
sysctl net.inet.tcp.rfc1323=0 >/dev/null
;;
@@ -44,6 +55,7 @@ esac
case ${tcp_keepalive} in
[Nn][Oo])
+ netoptions_init
echo -n ' TCP keepalive=NO'
sysctl net.inet.tcp.always_keepalive=0 >/dev/null
;;
@@ -51,6 +63,7 @@ esac
case ${tcp_drop_synfin} in
[Yy][Ee][Ss])
+ netoptions_init
echo -n ' drop SYN+FIN packets=YES'
sysctl net.inet.tcp.drop_synfin=1 >/dev/null
;;
@@ -60,6 +73,7 @@ case ${ip_portrange_first} in
[Nn][Oo] | '')
;;
*)
+ netoptions_init
echo -n " ip_portrange_first=$ip_portrange_first"
sysctl net.inet.ip.portrange.first=$ip_portrange_first >/dev/null
;;
@@ -69,9 +83,10 @@ case ${ip_portrange_last} in
[Nn][Oo] | '')
;;
*)
+ netoptions_init
echo -n " ip_portrange_last=$ip_portrange_last"
sysctl net.inet.ip.portrange.last=$ip_portrange_last >/dev/null
;;
esac
-echo '.'
+[ -n "${_netoptions_initdone}" ] && echo '.'
OpenPOWER on IntegriCloud