aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2014-07-08 13:18:29 +0200
committerLukas Nykryn <lnykryn@redhat.com>2014-07-08 13:18:29 +0200
commit058998c5b93de2d68ca7f915a8e9bb5cf9f0cfc4 (patch)
tree537bc5df63bc819bc8fe84216f06dba4f5e59aaa /sysconfig
parente8417451d2f91c2f1df18b936c02d76f2d07c6d1 (diff)
downloadinitscripts-058998c5b93de2d68ca7f915a8e9bb5cf9f0cfc4.tar
initscripts-058998c5b93de2d68ca7f915a8e9bb5cf9f0cfc4.tar.gz
initscripts-058998c5b93de2d68ca7f915a8e9bb5cf9f0cfc4.tar.bz2
initscripts-058998c5b93de2d68ca7f915a8e9bb5cf9f0cfc4.tar.xz
initscripts-058998c5b93de2d68ca7f915a8e9bb5cf9f0cfc4.zip
ifup,vlan: fix typo
Diffstat (limited to 'sysconfig')
-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 910b1051..189fcce7 100755
--- a/sysconfig/network-scripts/ifup
+++ b/sysconfig/network-scripts/ifup
@@ -72,7 +72,7 @@ fi
# Ethernet 802.1Q VLAN support
if [ "${VLAN}" = "yes" ] && [ "$ISALIAS" = "no" ] && [ -n $DEVICE ]; then
- if [ -n ${VID} ]; then
+ if [ -n "${VID}" ]; then
if test -z "$PHYSDEV"; then
net_log $"PHYSDEV should be set for device ${DEVICE}"
exit 1