blob: 2064bfd3586ae926377015ec9fbc432c7189ba4c (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!rsc by RouterOS
# RouterOS script: hello-world
# Copyright (c) 2023-2024 Christian Hesse <mail@eworm.de>
# https://git.eworm.de/cgit/routeros-scripts-custom/about/COPYING.md
#
# hello-world demo script
# https://git.eworm.de/cgit/routeros-scripts-custom/about/doc/hello-world.md
:global GlobalFunctionsReady;
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
:local ExitOK false;
:do {
:local ScriptName [ :jobname ];
:global LogPrint;
:global ScriptFromTerminal;
:global SendNotification2;
:if ([ $ScriptFromTerminal $ScriptName ] = true) do={
$LogPrint info $ScriptName ("Hello world!");
} else={
$SendNotification2 ({ origin=$ScriptName; subject="Hello..."; message="... world!" });
}
} on-error={
:global ExitError; $ExitError $ExitOK [ :jobname ];
}
|