diff options
author | Christian Hesse <mail@eworm.de> | 2022-07-11 10:39:43 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2022-07-11 10:41:51 +0200 |
commit | cb20b8c3807cbdd840d4017f466e1e82e3a9b8a5 (patch) | |
tree | 800d7a744dabaab77113d2723215c4515a09083b /daily-psk.local | |
parent | 0ed68824fde075a9db02d77f276fcf79050e4d39 (diff) |
daily-psk: properly check for disabled state
The property 'disabled' can be undefined, which evaluates to
enabled - but is not matched by 'disabled=no'.
Diffstat (limited to 'daily-psk.local')
-rw-r--r-- | daily-psk.local | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daily-psk.local b/daily-psk.local index 23df467..e2a5886 100644 --- a/daily-psk.local +++ b/daily-psk.local @@ -69,7 +69,7 @@ $WaitFullyConnected; $LogPrintExit2 info $0 ("Updating daily PSK for " . $Ssid . " to " . $NewPsk . " (was " . $OldPsk . ")") false; /interface/wireless/access-list/set $AccList private-pre-shared-key=$NewPsk; - :if ([ :len [ /interface/wireless/find where name=$IntName disabled=no ] ] = 1) do={ + :if ([ :len [ /interface/wireless/find where name=$IntName !disabled ] ] = 1) do={ :foreach SeenSsid in=$Seen do={ :if ($SeenSsid = $Ssid) do={ $LogPrintExit2 debug $0 ("Already sent a mail for SSID " . $Ssid . ", skipping.") false; |