mirror of
https://github.com/eworm-de/routeros-scripts
synced 2024-05-14 08:04:19 +00:00
628ae1bd70
... and unbreak last commit removing delay (69352c90
).
This requires a change in configuration syntax. Change this...
comment="default:br-local, alt:br-guest"
to...
comment="default=br-local, alt=br-guest"
21 lines
628 B
Text
21 lines
628 B
Text
#!rsc
|
|
# RouterOS script: global-config-overlay
|
|
# Copyright (c) 2013-2020 Christian Hesse <mail@eworm.de>
|
|
#
|
|
# global configuration, custom overlay
|
|
|
|
# Make sure all configuration properties are up to date and this
|
|
# value is in sync with value in script 'global-functions'!
|
|
# Comment or remove to disable change notifications.
|
|
:global GlobalConfigVersion 13;
|
|
|
|
# The global-config script is updated by script-updates,
|
|
# global-config-overlay becomes an overlay for your changes.
|
|
:global ScriptUpdatesIgnore {
|
|
"global-config-overlay"
|
|
}
|
|
|
|
# Copy configuration from global-config here and modify it.
|
|
|
|
|
|
# End of global-config-overlay
|