summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2011-11-23 08:17:33 -0600
committerWilliam Hubbs <williamh@gentoo.org>2011-11-23 08:17:33 -0600
commit483db945e11ef662e49cba3907b0be09c5b07fb3 (patch)
tree21694491cb5e141170437c505acd2cbcf9faceb9
parent17a1529416441391e3b55cd22e5584b530424932 (diff)
downloadopenrc-483db945e11ef662e49cba3907b0be09c5b07fb3.tar.gz
openrc-483db945e11ef662e49cba3907b0be09c5b07fb3.tar.bz2
openrc-483db945e11ef662e49cba3907b0be09c5b07fb3.tar.xz
Fix typo
-rw-r--r--net/system.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/system.sh b/net/system.sh
index 65557fc..98017d5 100644
--- a/net/system.sh
+++ b/net/system.sh
@@ -13,7 +13,7 @@ system_depend()
_system_dns()
{
- local servers= domain= search= sortlist= options= x=
+ local servers= domain= search= sortlist= options= x= imetric=
eval servers=\$dns_servers_${IFVAR}
[ -z "${servers}" ] && servers=${dns_servers}
@@ -47,8 +47,9 @@ _system_dns()
# Support resolvconf if we have it.
if [ -x /sbin/resolvconf ]; then
x="-a ${IFACE}"
- if [ -n "${metric_${IFVAR}}" ]; then
- x="${x} -m ${metric_${IFVAR}}"
+ eval imetric=\${metric_${IFVAR}}
+ if [ -n "${imetric}" ]; then
+ x="${x} -m ${imetric}"
fi
printf "${buffer}" | resolvconf ${x}
else