summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2011-04-19 17:17:53 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2011-04-19 17:49:20 +0000
commit2d197357ef9b92c6a237b438723c2969b51a802d (patch)
tree746808c36f80b315f04b8616d1aedb75630663a5 /net
parentb6409feaac9922e5761ed7beef93bdf0fdf2faf7 (diff)
downloadopenrc-2d197357ef9b92c6a237b438723c2969b51a802d.tar.gz
openrc-2d197357ef9b92c6a237b438723c2969b51a802d.tar.bz2
openrc-2d197357ef9b92c6a237b438723c2969b51a802d.tar.xz
[oldnet] Bug #363959: Improve plug_timeout ifplugd/netplugd code.
- Add support for a global plug_timeout setting to match the documentation. - Update the documentation to also show per-interface configuration. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'net')
-rw-r--r--net/ifplugd.sh2
-rw-r--r--net/netplugd.sh2
2 files changed, 4 insertions, 0 deletions
diff --git a/net/ifplugd.sh b/net/ifplugd.sh
index 9f6c884..34cd18a 100644
--- a/net/ifplugd.sh
+++ b/net/ifplugd.sh
@@ -51,7 +51,9 @@ ifplugd_pre_start()
eindent
+ # IFACE-specific, then global, then default
eval timeout=\$plug_timeout_${IFVAR}
+ [ -z "${timeout}" ] && timeout=$plug_timeout
[ -z "${timeout}" ] && timeout=-1
if [ ${timeout} -eq 0 ]; then
ewarn "WARNING: infinite timeout set for ${IFACE} to come up"
diff --git a/net/netplugd.sh b/net/netplugd.sh
index 8f36ef2..23b6d9e 100644
--- a/net/netplugd.sh
+++ b/net/netplugd.sh
@@ -53,7 +53,9 @@ netplugd_pre_start()
eindent
+ # IFACE-specific, then global, then default
eval timeout=\$plug_timeout_${IFVAR}
+ [ -z "${timeout}" ] && timeout=$plug_timeout
[ -z "${timeout}" ] && timeout=-1
if [ ${timeout} -eq 0 ]; then
ewarn "WARNING: infinite timeout set for ${IFACE} to come up"