README: update instructions to use $ScriptInstallUpdate

This commit is contained in:
Christian Hesse 2020-01-29 22:10:33 +01:00
parent 833e72eac8
commit 1e72f03e5e
5 changed files with 13 additions and 10 deletions

View file

@ -105,14 +105,17 @@ To update existing scripts just run `script-updates`.
[admin@MikroTik] > / system script run script-updates
Calling function `$ScriptInstallUpdate` does the same.
[admin@MikroTik] > $ScriptInstallUpdate
Adding a script
---------------
To add a script from the repository create a configuration item first, then
update scripts to fetch the source.
To add a script from the repository run function `$ScriptInstallUpdate` with
a comma separated list of script names.
[admin@MikroTik] > / system script add name="check-routeros-update"
[admin@MikroTik] > / system script run script-updates
[admin@MikroTik] > $ScriptInstallUpdate check-certificates,check-routeros-update
Scheduler and events
--------------------
@ -128,9 +131,8 @@ Some events can run a script. If you want your DHCP hostnames to be available
in DNS use `dhcp-to-dns` with the events from dhcp server. For a regular
cleanup add a scheduler entry.
[admin@MikroTik] > / system script add name="dhcp-to-dns"
[admin@MikroTik] > / system script run script-updates
[admin@MikroTik] > / ip dhcp-server set lease-script=dhcp-to-dns [ find ]
[admin@MikroTik] > $ScriptInstallUpdate dhcp-to-dns,lease-script
[admin@MikroTik] > / ip dhcp-server set lease-script=lease-script [ find ]
[admin@MikroTik] > / system scheduler add name="dhcp-to-dns" interval=5m on-event="/ system script run dhcp-to-dns;"
There's much more to explore... Have fun!

View file

@ -6,7 +6,7 @@
# Make sure all configuration properties are up to date and this
# value is in sync with value in script 'global-functions'!
:global GlobalConfigVersion 10;
:global GlobalConfigVersion 11;
# This is used for DNS and backup file.
:global Domain "example.com";

View file

@ -6,7 +6,7 @@
# Make sure all configuration properties are up to date and this
# value is in sync with value in script 'global-functions'!
:global GlobalConfigVersion 10;
:global GlobalConfigVersion 11;
# The global-config script is updated by script-updates,
# global-config-overlay becomes an overlay for your changes.

View file

@ -13,4 +13,5 @@
8="added donation hint and option to silence it";
9="introduced configuration overlay 'global-config-overlay'";
10="make health threshold for voltage configurable";
11="introduced function '\$ScriptInstallUpdate' to install new and update existing scripts";
};

View file

@ -6,7 +6,7 @@
# global functions
# expected configuration version
:global ExpectedConfigVersion 10;
:global ExpectedConfigVersion 11;
# global variables not to be changed by user
:global SentConfigChangesNotification "-";