aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2014-12-16 12:14:08 +0100
committerLukas Nykryn <lnykryn@redhat.com>2014-12-16 12:14:29 +0100
commitee22f9a606239c0d44d4d543e42e27ff527db8a5 (patch)
treec83287f929a7fe67e2800410641d89420d2b4c1a
parent9354e7b440b691846be62f7ca2c13f5d1f5ab18d (diff)
downloadinitscripts-ee22f9a606239c0d44d4d543e42e27ff527db8a5.tar
initscripts-ee22f9a606239c0d44d4d543e42e27ff527db8a5.tar.gz
initscripts-ee22f9a606239c0d44d4d543e42e27ff527db8a5.tar.bz2
initscripts-ee22f9a606239c0d44d4d543e42e27ff527db8a5.tar.xz
initscripts-ee22f9a606239c0d44d4d543e42e27ff527db8a5.zip
ifup: fix typo
-rwxr-xr-xsysconfig/network-scripts/ifup2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup b/sysconfig/network-scripts/ifup
index 911707e0..bb586851 100755
--- a/sysconfig/network-scripts/ifup
+++ b/sysconfig/network-scripts/ifup
@@ -90,7 +90,7 @@ if [ "${VLAN}" = "yes" ] && [ "$ISALIAS" = "no" ] && [ -n $DEVICE ]; then
fi
MATCH='^vlan[0-9]{1,4}?'
if [[ "${DEVICE}" =~ $MATCH ]]; then
- VID=$(echo "${DEVICE}" | LC_ALL=C sed 's/^vlan0*//'):
+ VID=$(echo "${DEVICE}" | LC_ALL=C sed 's/^vlan0*//')
# PHYSDEV should be set in ifcfg-vlan* file
if test -z "$PHYSDEV"; then
net_log $"PHYSDEV should be set for device ${DEVICE}"