aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2020-03-05 08:34:33 +0100
committerGravatar Christian Hesse <mail@eworm.de>2020-03-05 08:34:33 +0100
commitbe5b6e0687be98cbfefc7d381ab54e4577a670b0 (patch)
treee5cfc8cb183ba3b83418885eaefe5cc2dc68cdf7
parent3127800496410a9f316e22c57485e83a6c2fe193 (diff)
dhcp-lease-comment: use $LogPrintExit
-rw-r--r--dhcp-lease-comment.capsman4
-rw-r--r--dhcp-lease-comment.local4
-rw-r--r--dhcp-lease-comment.template4
3 files changed, 9 insertions, 3 deletions
diff --git a/dhcp-lease-comment.capsman b/dhcp-lease-comment.capsman
index e5da51f..5a5d98b 100644
--- a/dhcp-lease-comment.capsman
+++ b/dhcp-lease-comment.capsman
@@ -6,6 +6,8 @@
#
# !! Do not edit this file, it is generated from template!
+:global LogPrintExit;
+
:foreach Lease in=[ / ip dhcp-server lease find where dynamic=yes status=bound ] do={
:local LeaseVal [ / ip dhcp-server lease get $Lease ];
:local NewComment;
@@ -14,7 +16,7 @@
:set NewComment [ / caps-man access-list get $AccessList comment ];
}
:if ([ :len $NewComment ] != 0 && $LeaseVal->"comment" != $NewComment) do={
- :log info ("Updating comment for DHCP lease " . $LeaseVal->"mac-address" . ": " . $NewComment);
+ $LogPrintExit info ("Updating comment for DHCP lease " . $LeaseVal->"mac-address" . ": " . $NewComment) false;
/ ip dhcp-server lease set comment=$NewComment $Lease;
}
}
diff --git a/dhcp-lease-comment.local b/dhcp-lease-comment.local
index 367ca0b..eb74dab 100644
--- a/dhcp-lease-comment.local
+++ b/dhcp-lease-comment.local
@@ -6,6 +6,8 @@
#
# !! Do not edit this file, it is generated from template!
+:global LogPrintExit;
+
:foreach Lease in=[ / ip dhcp-server lease find where dynamic=yes status=bound ] do={
:local LeaseVal [ / ip dhcp-server lease get $Lease ];
:local NewComment;
@@ -14,7 +16,7 @@
:set NewComment [ / interface wireless access-list get $AccessList comment ];
}
:if ([ :len $NewComment ] != 0 && $LeaseVal->"comment" != $NewComment) do={
- :log info ("Updating comment for DHCP lease " . $LeaseVal->"mac-address" . ": " . $NewComment);
+ $LogPrintExit info ("Updating comment for DHCP lease " . $LeaseVal->"mac-address" . ": " . $NewComment) false;
/ ip dhcp-server lease set comment=$NewComment $Lease;
}
}
diff --git a/dhcp-lease-comment.template b/dhcp-lease-comment.template
index 3734ba4..bcbb39a 100644
--- a/dhcp-lease-comment.template
+++ b/dhcp-lease-comment.template
@@ -7,6 +7,8 @@
# !! This is just a template! Replace '%PATH%' with 'caps-man'
# !! or 'interface wireless'!
+:global LogPrintExit;
+
:foreach Lease in=[ / ip dhcp-server lease find where dynamic=yes status=bound ] do={
:local LeaseVal [ / ip dhcp-server lease get $Lease ];
:local NewComment;
@@ -15,7 +17,7 @@
:set NewComment [ / %PATH% access-list get $AccessList comment ];
}
:if ([ :len $NewComment ] != 0 && $LeaseVal->"comment" != $NewComment) do={
- :log info ("Updating comment for DHCP lease " . $LeaseVal->"mac-address" . ": " . $NewComment);
+ $LogPrintExit info ("Updating comment for DHCP lease " . $LeaseVal->"mac-address" . ": " . $NewComment) false;
/ ip dhcp-server lease set comment=$NewComment $Lease;
}
}