diff options
author | Lukas Nykryn <lnykryn@redhat.com> | 2015-04-24 15:16:24 +0200 |
---|---|---|
committer | Lukas Nykryn <lnykryn@redhat.com> | 2015-04-24 15:16:24 +0200 |
commit | 9698de338c4ae26c38d79ed009cc38bdc6326322 (patch) | |
tree | 638ad96f8c1b5369e7030c5d4af7e732b52d419c /sysconfig/network-scripts/ifup | |
parent | 7d0df4232dc55afb9b1ca44cbe54a52817d0f321 (diff) | |
download | initscripts-9698de338c4ae26c38d79ed009cc38bdc6326322.tar initscripts-9698de338c4ae26c38d79ed009cc38bdc6326322.tar.gz initscripts-9698de338c4ae26c38d79ed009cc38bdc6326322.tar.bz2 initscripts-9698de338c4ae26c38d79ed009cc38bdc6326322.tar.xz initscripts-9698de338c4ae26c38d79ed009cc38bdc6326322.zip |
ifup: add missing quotes
Diffstat (limited to 'sysconfig/network-scripts/ifup')
-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 bb586851..2940e889 100755 --- a/sysconfig/network-scripts/ifup +++ b/sysconfig/network-scripts/ifup @@ -75,7 +75,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}" |