aboutsummaryrefslogtreecommitdiffstats
path: root/ppp-on-up
diff options
context:
space:
mode:
Diffstat (limited to 'ppp-on-up')
-rw-r--r--ppp-on-up13
1 files changed, 4 insertions, 9 deletions
diff --git a/ppp-on-up b/ppp-on-up
index fe1492d..e7b2971 100644
--- a/ppp-on-up
+++ b/ppp-on-up
@@ -23,13 +23,8 @@
/ ipv6 dhcp-client release [ find where interface=$IntName !disabled ];
-:local Scripts {
- "update-tunnelbroker"
-}
-
-:foreach Script in=$Scripts do={
- :if ([ :len [ / system script find where name=$Script ] ] > 0) do={
- :log debug ("Running script from ppp-on-up: " . $Script);
- / system script run $Script;
- }
+:foreach Script in=[ / system script find where source~("\n# provides: ppp-on-up\n") ] do={
+ :local ScriptName [ / system script get $Script name ];
+ :log debug ("Running script from ppp-on-up: " . $ScriptName);
+ / system script run $Script;
}