aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar DutchO7 <127633980+DutchO7@users.noreply.github.com>2025-03-20 15:15:15 +0000
committerGravatar Christian Hesse <mail@eworm.de>2025-03-20 19:53:04 +0100
commita6850f57519e028a43ebe10762545e61b4c5445e (patch)
tree912d0792959e1a4439328b5a8e4430610b264702
parent8225c6e6fdc42f96440c961f0d43e040dd9cf571 (diff)
downloadpacredir-main.tar.gz
pacredir-main.tar.zst
update 80-pacredir for posix shell compatibilityHEADnextmain
Changes == to = so it can work with dash and other shells as /bin/sh
-rwxr-xr-xnetworkmanager/80-pacredir2
1 files changed, 1 insertions, 1 deletions
diff --git a/networkmanager/80-pacredir b/networkmanager/80-pacredir
index 32114ae..fa9e1e1 100755
--- a/networkmanager/80-pacredir
+++ b/networkmanager/80-pacredir
@@ -1,6 +1,6 @@
#!/bin/sh
-if [ "${2}" == "up" ]; then
+if [ "${2}" = "up" ]; then
if systemctl is-active -q pacredir.service; then
systemctl reload pacredir.service
fi