aboutsummaryrefslogtreecommitdiffstats
path: root/script-updates
AgeCommit message (Collapse)AuthorFilesLines
2021-07-09finally remove old scriptschange-61Gravatar Christian Hesse1-6/+0
2021-02-24global: give script or function name in log messagesGravatar Christian Hesse1-2/+2
2020-09-18extend magic pattern with "by RouterOS"Gravatar Christian Hesse1-1/+1
This matches the string included in export.
2020-03-31script-updates: fix syntax errorGravatar Christian Hesse1-1/+1
2020-03-23completely replace script-updates with $ScriptInstallUpdatechange-14Gravatar Christian Hesse1-131/+1
2020-03-12add script 'global-wait'Gravatar Christian Hesse1-2/+2
Run this in schedulers that fire on startup without interval. Schedulers should look something like this: / system scheduler { add name=global-scripts on-event="/ system script { run global-config; run global-config-overlay; run global-functions; }" start-time=startup; add name=bridge-port-to-default on-event="/ system script { run global-wait; run bridge-port-to-default; }" start-time=startup; }
2020-03-05script-updates: also consider scripts with empty source for updateGravatar Christian Hesse1-1/+1
2020-03-05script-updates: use $LogPrintExit for debugGravatar Christian Hesse1-4/+4
2020-02-28global-functions: sort alphabeticallyGravatar Christian Hesse1-4/+4
2020-02-26global-functions: merge $LogAnd{Error,Put} to $LogPrintExit ...Gravatar Christian Hesse1-9/+9
... and fix logging. Logging with severity from variable (:log $severity ...) is not possible, this is considered a syntax error. Also the 'workaround' with parsing code failed with missing message in log. The reliable code is a lot longer, so merge the two functions to save a lot of duplicate code.
2020-02-26script-updates: use $LogAndPutGravatar Christian Hesse1-6/+7
2020-02-24script-updates: warn on scheduler at startup with no intervalGravatar Christian Hesse1-0/+7
2020-02-05script-updates: prefix variable name with dollarGravatar Christian Hesse1-1/+1
2020-02-04global-config: drop $ScriptUpdatesConfigChangesIgnorechange-12Gravatar Christian Hesse1-3/+1
Comment or remove $GlobalConfigVersion in global-config-overlay to disable change notifications.
2020-01-29script-updates: only handle scripts with magic patternGravatar Christian Hesse1-1/+1
This is supposed to prevent overwriting foreign scripts. New scripts are expected to be installed with function $ScriptInstallUpdate!
2020-01-01update copyright for 2020Gravatar Christian Hesse1-1/+1
2019-09-12introduce global-config-overlaychange-9Gravatar Christian Hesse1-2/+10
2019-08-30script-updates: add donation hint in configuration warning notificationchange-8Gravatar Christian Hesse1-11/+23
2019-08-29script-updates: better regex matchingGravatar Christian Hesse1-1/+1
2019-07-25script-updates: get source from arrayGravatar Christian Hesse1-2/+1
2019-07-25script-updates: get values into arraysGravatar Christian Hesse1-19/+17
2019-04-03script-updates: clear variable after useGravatar Christian Hesse1-0/+1
2019-04-03script-updates: send global-config changes notification just onceGravatar Christian Hesse1-2/+6
2019-04-02script-updates: add option to ignore global-config changeschange-4Gravatar Christian Hesse1-1/+2
2019-04-01script-updates: add changelog for global configurationchange-2change-1Gravatar Christian Hesse1-1/+22
2019-01-04global: variable names are CamelCaseGravatar Christian Hesse1-44/+44
___ _ ___ __ / _ )(_)__ _ / _/__ _/ /_ / _ / / _ `/ / _/ _ `/ __/ /____/_/\_, / /_/ \_,_/\__/ _ __ /___/ _ __ | | / /___ __________ (_)___ ____ _/ / | | /| / / __ `/ ___/ __ \/ / __ \/ __ `/ / | |/ |/ / /_/ / / / / / / / / / / /_/ /_/ |__/|__/\__,_/_/ /_/ /_/_/_/ /_/\__, (_) /____/ RouterOS has some odd behavior when it comes to variable names. Let's have a look at the interfaces: [admin@MikroTik] > / interface print where name=en1 Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU 0 RS en1 ether 1500 1598 That looks ok. Now we use a script: { :local interface "en1"; / interface print where name=$interface; } And the result... [admin@MikroTik] > { :local interface "en1"; {... / interface print where name=$interface; } Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU 0 RS en1 ether 1500 1598 ... still looks ok. We make a little modification to the script: { :local name "en1"; / interface print where name=$name; } And the result: [admin@MikroTik] > { :local name "en1"; {... / interface print where name=$name; } Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU 0 RS en1 ether 1500 1598 1 S en2 ether 1500 1598 2 S en3 ether 1500 1598 3 S en4 ether 1500 1598 4 S en5 ether 1500 1598 5 R br-local bridge 1500 1598 Ups! The filter has no effect! That happens whenever the variable name ($name) matches the property name (name=). And another modification: { :local type "en1"; / interface print where name=$type; } And the result: [admin@MikroTik] > { :local type "en1"; {... / interface print where name=$type; } Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU Ups! Nothing? Even if the variable name ($type) matches whatever property name (type=) things go wrong. The answer from MikroTik support (in Ticket#2019010222000454): > This is how scripting works in RouterOS and we will not fix it. To get around this we use variable names in CamelCase. Let's hope Mikrotik never ever introduces property names in CamelCase... *fingers crossed*
2019-01-03script-updates: add configuration versioningGravatar Christian Hesse1-0/+13
2019-01-02update copyright for 2019Gravatar Christian Hesse1-1/+1
2018-10-16script-updates: run global-functions on updateGravatar Christian Hesse1-0/+3
2018-10-12script-updates: allow to set dont-require-permissions=yesGravatar Christian Hesse1-1/+4
This requires the new script to contain a line: # requires: dont-require-permissions=yes
2018-09-28script-updates: make sure new script starts with magicGravatar Christian Hesse1-5/+9
2018-09-27start scripts with a magic token / shebangGravatar Christian Hesse1-1/+1
2018-09-14script-updates: add error handling back inGravatar Christian Hesse1-7/+9
We have to make sure the script does not terminate on first error...
2018-09-13script-updates: check and warn about policiesGravatar Christian Hesse1-0/+10
2018-09-03script-updates: fetch into variablerouteros-6.43Gravatar Christian Hesse1-13/+16
2018-08-27script-updates: add support for url suffixGravatar Christian Hesse1-1/+2
This allows to fetch from different branch...
2018-08-24add empty comment at first line...Gravatar Christian Hesse1-0/+1
... for better formatting in export.
2018-07-10script-updates: always accept updates from fileGravatar Christian Hesse1-33/+25
2018-07-09script-updates: handle error on fetchGravatar Christian Hesse1-4/+8
2018-07-09script-updates: check certificate on fetchGravatar Christian Hesse1-1/+3
2018-07-09script-updates: support fetch from urlGravatar Christian Hesse1-9/+40
2018-07-05add scriptsGravatar Christian Hesse1-0/+17