mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-06-28 20:30:05 +02:00
Comment or remove $GlobalConfigVersion in global-config-overlay to disable change notifications.
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 12;
|
|
|
|
# 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
|