aboutsummaryrefslogtreecommitdiffstats
path: root/sms-action
diff options
context:
space:
mode:
Diffstat (limited to 'sms-action')
-rw-r--r--sms-action21
1 files changed, 0 insertions, 21 deletions
diff --git a/sms-action b/sms-action
deleted file mode 100644
index 026bdc8..0000000
--- a/sms-action
+++ /dev/null
@@ -1,21 +0,0 @@
-#!rsc
-# RouterOS script: sms-action
-# Copyright (c) 2018-2020 Christian Hesse <mail@eworm.de>
-#
-# run action on received SMS
-
-:global SmsAction;
-
-:local Action $action;
-
-:if ([ :typeof $Action ] = "nothing") do={
- :log error "This script is supposed to run from SMS hook with action=...";
- :error "Error: See log for details.";
-}
-
-:local Code ($SmsAction->$Action);
-:local Parsed [ :parse $Code ];
-
-:log info ("Acting on SMS action '" . $Action . "': " . $Code);
-:delay 1s;
-$Parsed;