routeros-scripts/sms-action
Christian Hesse 07e54dd88b add empty comment at first line...
... for better formatting in export.
2018-08-24 16:58:30 +02:00

30 lines
571 B
Plaintext

#
# RouterOS script: sms-action
# Copyright (c) 2018 Christian Hesse <mail@eworm.de>
#
# run action on received SMS
:log info ("Received SMS with action '" . $action . "'");
# delay a second to give log servers a chance to get the info
:delay 1s;
:if ($action = "reboot") do={
/ system reboot;
}
:if ($action = "shutdown") do={
/ system shutdown;
}
:if ($action = "update") do={
/ system package update install;
}
:if ($action= "trackon") do={
/ system scheduler enable gps-track;
}
:if ($action = "trackoff") do={
/ system scheduler disable gps-track;
}