aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2024-03-06 15:28:55 +0100
committerGravatar Christian Hesse <mail@eworm.de>2024-03-12 15:27:15 +0100
commit1db1a943e2c802e9e869fa9222998b16d14cedba (patch)
tree7bbb020832f490bfcdef890f46b4fd7519bf80e4
parent1012d9fc51973adefff4b72885e828f2cd04149a (diff)
ppp-on-up: drop main function, use :do with on-error
-rw-r--r--ppp-on-up.rsc11
1 files changed, 5 insertions, 6 deletions
diff --git a/ppp-on-up.rsc b/ppp-on-up.rsc
index ae259d7..0cc2405 100644
--- a/ppp-on-up.rsc
+++ b/ppp-on-up.rsc
@@ -11,12 +11,13 @@
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
-:local Main do={
- :local ScriptName [ :tostr $1 ];
- :local Interface $2;
+:do {
+ :local ScriptName [ :jobname ];
:global LogPrintExit2;
+ :local Interface $interface;
+
:if ([ :typeof $Interface ] = "nothing") do={
$LogPrintExit2 error $ScriptName ("This script is supposed to run from ppp on-up script hook.") true;
}
@@ -35,6 +36,4 @@
$LogPrintExit2 warning $ScriptName ("Running script '" . $ScriptName . "' failed!") false;
}
}
-}
-
-$Main [ :jobname ] $interface;
+} on-error={ }