diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2016-10-24 12:56:08 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2016-10-24 12:56:08 -0700 |
commit | 9bfa24d64ea686ff7416bfd990624a54788525a0 (patch) | |
tree | 8c7a1b4abb0d640b67184d2e936857649a4b97e0 /udev_helper | |
parent | net/iproute2: IPv6 DAD delay must be non-fatal. (diff) | |
download | netifrc-9bfa24d64ea686ff7416bfd990624a54788525a0.tar.gz netifrc-9bfa24d64ea686ff7416bfd990624a54788525a0.tar.bz2 netifrc-9bfa24d64ea686ff7416bfd990624a54788525a0.zip |
bashisms: Fix bashisms for dash support.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'udev_helper')
-rw-r--r-- | udev_helper/net.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev_helper/net.sh b/udev_helper/net.sh index 85b304b..b15b187 100644 --- a/udev_helper/net.sh +++ b/udev_helper/net.sh @@ -48,6 +48,6 @@ fi # If we're stopping then sleep for a bit in-case a daemon is monitoring # the interface. This to try and ensure we stop after they do. -[ "${ACTION}" == "stop" ] && sleep 2 +[ "${ACTION}" = "stop" ] && sleep 2 IN_HOTPLUG=1 "${SCRIPT}" --quiet "${ACTION}" |