aboutsummaryrefslogtreecommitdiffstats
path: root/dhcp-lease-comment.template
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2022-05-12 11:03:06 +0200
committerGravatar Christian Hesse <mail@eworm.de>2022-05-12 11:03:06 +0200
commit48f0a2d21118a7bff7d598e84d9f606fb30bf07a (patch)
treefb9746502335552880823e9445cd4201414bb8eb /dhcp-lease-comment.template
parent93ec9afe558ef6eba5d513fab359bb5f6618666d (diff)
parenta71a3d5466548d05d27d31c446c62afdf2412070 (diff)
Merge branch 'scripts' into ros-v7-path-syntax
Diffstat (limited to 'dhcp-lease-comment.template')
-rw-r--r--dhcp-lease-comment.template10
1 files changed, 5 insertions, 5 deletions
diff --git a/dhcp-lease-comment.template b/dhcp-lease-comment.template
index fea0c14..a31812b 100644
--- a/dhcp-lease-comment.template
+++ b/dhcp-lease-comment.template
@@ -17,15 +17,15 @@
:global LogPrintExit2;
-:foreach Lease in=[ / ip dhcp-server lease find where dynamic=yes status=bound ] do={
- :local LeaseVal [ / ip dhcp-server lease get $Lease ];
+:foreach Lease in=[ /ip/dhcp-server/lease/find where dynamic=yes status=bound ] do={
+ :local LeaseVal [ /ip/dhcp-server/lease/get $Lease ];
:local NewComment;
- :local AccessList ([ / %PATH% access-list find where mac-address=($LeaseVal->"mac-address") ]->0);
+ :local AccessList ([ /%PATH%/access-list/find where mac-address=($LeaseVal->"mac-address") ]->0);
:if ([ :len $AccessList ] > 0) do={
- :set NewComment [ / %PATH% access-list get $AccessList comment ];
+ :set NewComment [ /%PATH%/access-list/get $AccessList comment ];
}
:if ([ :len $NewComment ] != 0 && $LeaseVal->"comment" != $NewComment) do={
$LogPrintExit2 info $0 ("Updating comment for DHCP lease " . $LeaseVal->"mac-address" . ": " . $NewComment) false;
- / ip dhcp-server lease set comment=$NewComment $Lease;
+ /ip/dhcp-server/lease/set comment=$NewComment $Lease;
}
}