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:36 +0200 |
commit | 47b1f067b4e9ee046b36ac77bd0b7a9a901f2097 (patch) | |
tree | 5eb754ff5a0cf647b751af1f3839487d766c9496 | |
parent | 59b2cbab740638cea9cbf4d3e6f7103e178052fe (diff) | |
download | initscripts-47b1f067b4e9ee046b36ac77bd0b7a9a901f2097.tar initscripts-47b1f067b4e9ee046b36ac77bd0b7a9a901f2097.tar.gz initscripts-47b1f067b4e9ee046b36ac77bd0b7a9a901f2097.tar.bz2 initscripts-47b1f067b4e9ee046b36ac77bd0b7a9a901f2097.tar.xz initscripts-47b1f067b4e9ee046b36ac77bd0b7a9a901f2097.zip |
ifup: add missing quotes
-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}" |