mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
README: update instructions to use $ScriptInstallUpdate
This commit is contained in:
parent
833e72eac8
commit
1e72f03e5e
5 changed files with 13 additions and 10 deletions
16
README.md
16
README.md
|
@ -105,14 +105,17 @@ To update existing scripts just run `script-updates`.
|
||||||
|
|
||||||
[admin@MikroTik] > / system script run script-updates
|
[admin@MikroTik] > / system script run script-updates
|
||||||
|
|
||||||
|
Calling function `$ScriptInstallUpdate` does the same.
|
||||||
|
|
||||||
|
[admin@MikroTik] > $ScriptInstallUpdate
|
||||||
|
|
||||||
Adding a script
|
Adding a script
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
To add a script from the repository create a configuration item first, then
|
To add a script from the repository run function `$ScriptInstallUpdate` with
|
||||||
update scripts to fetch the source.
|
a comma separated list of script names.
|
||||||
|
|
||||||
[admin@MikroTik] > / system script add name="check-routeros-update"
|
[admin@MikroTik] > $ScriptInstallUpdate check-certificates,check-routeros-update
|
||||||
[admin@MikroTik] > / system script run script-updates
|
|
||||||
|
|
||||||
Scheduler and events
|
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
|
in DNS use `dhcp-to-dns` with the events from dhcp server. For a regular
|
||||||
cleanup add a scheduler entry.
|
cleanup add a scheduler entry.
|
||||||
|
|
||||||
[admin@MikroTik] > / system script add name="dhcp-to-dns"
|
[admin@MikroTik] > $ScriptInstallUpdate dhcp-to-dns,lease-script
|
||||||
[admin@MikroTik] > / system script run script-updates
|
[admin@MikroTik] > / ip dhcp-server set lease-script=lease-script [ find ]
|
||||||
[admin@MikroTik] > / ip dhcp-server set lease-script=dhcp-to-dns [ find ]
|
|
||||||
[admin@MikroTik] > / system scheduler add name="dhcp-to-dns" interval=5m on-event="/ system script run dhcp-to-dns;"
|
[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!
|
There's much more to explore... Have fun!
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
# Make sure all configuration properties are up to date and this
|
# Make sure all configuration properties are up to date and this
|
||||||
# value is in sync with value in script 'global-functions'!
|
# value is in sync with value in script 'global-functions'!
|
||||||
:global GlobalConfigVersion 10;
|
:global GlobalConfigVersion 11;
|
||||||
|
|
||||||
# This is used for DNS and backup file.
|
# This is used for DNS and backup file.
|
||||||
:global Domain "example.com";
|
:global Domain "example.com";
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
# Make sure all configuration properties are up to date and this
|
# Make sure all configuration properties are up to date and this
|
||||||
# value is in sync with value in script 'global-functions'!
|
# 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,
|
# The global-config script is updated by script-updates,
|
||||||
# global-config-overlay becomes an overlay for your changes.
|
# global-config-overlay becomes an overlay for your changes.
|
||||||
|
|
|
@ -13,4 +13,5 @@
|
||||||
8="added donation hint and option to silence it";
|
8="added donation hint and option to silence it";
|
||||||
9="introduced configuration overlay 'global-config-overlay'";
|
9="introduced configuration overlay 'global-config-overlay'";
|
||||||
10="make health threshold for voltage configurable";
|
10="make health threshold for voltage configurable";
|
||||||
|
11="introduced function '\$ScriptInstallUpdate' to install new and update existing scripts";
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# global functions
|
# global functions
|
||||||
|
|
||||||
# expected configuration version
|
# expected configuration version
|
||||||
:global ExpectedConfigVersion 10;
|
:global ExpectedConfigVersion 11;
|
||||||
|
|
||||||
# global variables not to be changed by user
|
# global variables not to be changed by user
|
||||||
:global SentConfigChangesNotification "-";
|
:global SentConfigChangesNotification "-";
|
||||||
|
|
Loading…
Reference in a new issue