diff options
author | Lukas Nykryn <lnykryn@redhat.com> | 2015-04-24 15:16:24 +0200 |
---|---|---|
committer | Lukas Nykryn <lnykryn@redhat.com> | 2015-10-27 13:18:33 +0100 |
commit | e00a9a9fa9d911d4a2fd266f8298387807fe1c11 (patch) | |
tree | 1328e36a3f6fdbe7c019d73a07509e54e9ad875c /sysconfig | |
parent | dc8a35eedcb077506c5edb4238f9ed10db32ea7b (diff) | |
download | initscripts-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-x | sysconfig/network-scripts/ifup | 2 |
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}" |