aboutsummaryrefslogtreecommitdiffstats
path: root/collect-wireless-mac.local
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2020-01-17 10:36:03 +0100
committerGravatar Christian Hesse <mail@eworm.de>2020-01-17 10:36:03 +0100
commit958bfa7ce8d57089b3d66b76eca1c7382f8b4119 (patch)
tree5e6f706e8f700e9e4c4dc0dbcac9ae0dfee53dd0 /collect-wireless-mac.local
parent12da4de305421fe155e352cc9b1396f56338516e (diff)
collect-wireless-mac: automatically add missing access-list entry
Diffstat (limited to 'collect-wireless-mac.local')
-rw-r--r--collect-wireless-mac.local8
1 files changed, 4 insertions, 4 deletions
diff --git a/collect-wireless-mac.local b/collect-wireless-mac.local
index c38c2c1..3241c27 100644
--- a/collect-wireless-mac.local
+++ b/collect-wireless-mac.local
@@ -14,11 +14,11 @@
$ScriptLock "collect-wireless-mac.local";
-:local PlaceBefore [ / interface wireless access-list find where comment="--- collected above ---" disabled ];
-:if ([ :len $PlaceBefore ] = 0) do={
- :log error "Missing disabled access-list entry with comment '--- collected above ---'";
- :error "Error: See log for details.";
+:if ([ / interface wireless access-list print count-only where comment="--- collected above ---" disabled ] = 0) do={
+ / interface wireless access-list add comment="--- collected above ---" disabled=yes;
+ :log warn "Added disabled access-list entry with comment '--- collected above ---'.";
}
+:local PlaceBefore [ / interface wireless access-list find where comment="--- collected above ---" disabled ];
:foreach RegTbl in=[ / interface wireless registration-table find ] do={
:local Mac [ / interface wireless registration-table get $RegTbl mac-address ];