diff options
author | 2025-03-20 15:15:15 +0000 | |
---|---|---|
committer | 2025-03-20 19:53:04 +0100 | |
commit | a6850f57519e028a43ebe10762545e61b4c5445e (patch) | |
tree | 912d0792959e1a4439328b5a8e4430610b264702 | |
parent | 8225c6e6fdc42f96440c961f0d43e040dd9cf571 (diff) | |
download | pacredir-main.tar.gz pacredir-main.tar.zst |
Changes == to = so it can work with dash and other shells as /bin/sh
-rwxr-xr-x | networkmanager/80-pacredir | 2 |
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 |