aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2015-04-24 15:16:24 +0200
committerLukas Nykryn <lnykryn@redhat.com>2015-10-27 13:18:33 +0100
commite00a9a9fa9d911d4a2fd266f8298387807fe1c11 (patch)
tree1328e36a3f6fdbe7c019d73a07509e54e9ad875c /sysconfig
parentdc8a35eedcb077506c5edb4238f9ed10db32ea7b (diff)
downloadinitscripts-e00a9a9fa9d911d4a2fd266f8298387807fe1c11.tar
initscripts-e00a9a9fa9d911d4a2fd266f8298387807fe1c11.tar.gz
initscripts-e00a9a9fa9d911d4a2fd266f8298387807fe1c11.tar.bz2
initscripts-e00a9a9fa9d911d4a2fd266f8298387807fe1c11.tar.xz
initscripts-e00a9a9fa9d911d4a2fd266f8298387807fe1c11.zip
ifup: add missing quotes
Resolves: #1215166
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 7dc349aa..0790bb5f 100755
--- a/sysconfig/network-scripts/ifup
+++ b/sysconfig/network-scripts/ifup
@@ -71,7 +71,7 @@ if [ "$USE_NM" = "true" -a -n "$UUID" ]; then
fi
# Ethernet 802.1Q VLAN support
-if [ "${VLAN}" = "yes" ] && [ "$ISALIAS" = "no" ] && [ -n $DEVICE ]; then
+if [ "${VLAN}" = "yes" ] && [ "$ISALIAS" = "no" ] && [ -n "$DEVICE" ]; then
if [ -n "${VID}" ]; then
if test -z "$PHYSDEV"; then
net_log $"PHYSDEV should be set for device ${DEVICE}"