diff options
author | David Kaspar [Dee'Kej] <dkaspar@redhat.com> | 2018-06-06 19:09:36 +0200 |
---|---|---|
committer | Dee'Kej <deekej@linuxmail.org> | 2018-06-07 14:04:50 +0200 |
commit | 8659ca9ef9c1b0826799ea8da217c886ff0c26b5 (patch) | |
tree | 3c4df5f8b24a5edc10e9ce36aaa5f6d67641e64d | |
parent | ae5bef6256bec0e272c07c0f078643284bcdcf60 (diff) | |
download | initscripts-8659ca9ef9c1b0826799ea8da217c886ff0c26b5.tar initscripts-8659ca9ef9c1b0826799ea8da217c886ff0c26b5.tar.gz initscripts-8659ca9ef9c1b0826799ea8da217c886ff0c26b5.tar.bz2 initscripts-8659ca9ef9c1b0826799ea8da217c886ff0c26b5.tar.xz initscripts-8659ca9ef9c1b0826799ea8da217c886ff0c26b5.zip |
ifdown-post: artifact whitespace removed from the DBus call
This was causing the DBus call to fail, and we didn't catch it before
since we were forwarding everything into /dev/null...
Related: RHBZ#1586284
-rwxr-xr-x | network-scripts/ifdown-post | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/network-scripts/ifdown-post b/network-scripts/ifdown-post index ab6b1b55..83d48775 100755 --- a/network-scripts/ifdown-post +++ b/network-scripts/ifdown-post @@ -58,7 +58,7 @@ if [ "${REALDEVICE}" != "lo" ]; then dbus-send --system --dest=org.fedoraproject.FirewallD1 \ /org/fedoraproject/FirewallD1 \ org.fedoraproject.FirewallD1.zone.removeInterface \ - string: "" string:"${DEVICE}" \ + string:"" string:"${DEVICE}" \ > /dev/null 2>&1 fi |