routeros-scripts/ppp-on-up
Christian Hesse ceaa83b83e global-functions: merge $LogAnd{Error,Put} to $LogPrintExit ...
... and fix logging.

Logging with severity from variable (:log $severity ...) is not
possible, this is considered a syntax error. Also the 'workaround' with
parsing code failed with missing message in log.

The reliable code is a lot longer, so merge the two functions to save a
lot of duplicate code.
2020-02-26 14:19:54 +01:00

30 lines
741 B
Plaintext

#!rsc
# RouterOS script: ppp-on-up
# Copyright (c) 2013-2020 Christian Hesse <mail@eworm.de>
#
# run scripts on ppp up
:global LogPrintExit;
:local Interface $interface;
:if ([ :typeof $Interface ] = "nothing") do={
$LogPrintExit error "This script is supposed to run from ppp on-up script hook." true;
}
:local IntName [ / interface get $Interface name ];
:log info ("PPP interface " . $IntName . " is up.");
/ ipv6 dhcp-client release [ find where interface=$IntName !disabled ];
:local Scripts {
"update-tunnelbroker"
}
:foreach Script in=$Scripts do={
:if ([ / system script print count-only where name=$Script ] > 0) do={
:log debug ("Running script from ppp-on-up: " . $Script);
/ system script run $Script;
}
}