aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2025-01-06backup-upload: refuse when running from backup partitionGravatar Christian Hesse1-0/+8
2025-01-06backup-partition: refuse when running from backup partitionGravatar Christian Hesse1-0/+7
2025-01-06backup-email: refuse when running from backup partitionGravatar Christian Hesse1-0/+8
2025-01-06backup-cloud: refuse when running from backup partitionGravatar Christian Hesse1-0/+8
2025-01-02update copyright for 2025Gravatar Christian Hesse77-77/+77
2024-12-30global-functions: $WaitForFile: drop the first workaroundGravatar Christian Hesse1-10/+0
This reverts commit 8231c3e833ee83a118f4d8395c097e6a9f312c2f. Truned out this workaround was not sufficient, see the follow-up in commit 191cc1b952b469c474b0181ebdee0ccfd47ae75b for details. But possibly the second one does it on its own? Reverting this for a test run.
2024-12-30global-functions: $FetchHuge: another workaround for complete fileGravatar Christian Hesse1-1/+5
Turns out the workaround in $WaitForFile (commit 8231c3e833ee83a118f4d8395c097e6a9f312c2f) is not sufficient. It helps sometimes, but not always. Possibly depends on CPU speed and bandwidth of internet connection... Who knows!? 🤪 But! Reading the file goes beyond the known file size. That's suspicious and indicates this exact issue. So add a delay, and keep reading until sizes are equal.
2024-12-30fw-addr-lists: spamhaus.org returned to 'ISRG Root X1'Gravatar Christian Hesse2-3/+3
This reverts commit 4d8dce97691ad090091574a790449a7bd564023c.
2024-12-25global-functions: $ParseKeyValueStore: support JSON as inputGravatar Christian Hesse1-0/+7
This used to require a key=value store, separated with commas. An example for `netwatch-notify` is: /tool/netwatch/add comment="notify, name=example.com" host=93.184.215.14; Now JSON is supported as well, so you could use: /tool/netwatch/add comment="{\"notify\":true,\"name\":\"example.com\"}" host=93.184.215.14; Looks more clumsy here, but may be of help in more complex setups...
2024-12-25global-functions: $ParseKeyValueStore: properly return boolean valuesGravatar Christian Hesse1-0/+2
2024-12-25global-functions: $ParseKeyValueStore: split key and value...Gravatar Christian Hesse1-2/+3
... into separate variables.
2024-12-17mod/notification-ntfy: add basic authentication in headersGravatar Christian Hesse1-3/+6
This makes it a bit easier and straight forward as we pass the headers anyway.
2024-12-17mod/notification-ntfy: support authentication with bearer tokenGravatar Christian Hesse3-0/+9
Closes: https://github.com/eworm-de/routeros-scripts/issues/86
2024-12-17fw-addr-lists: do not fail on invalid json dataGravatar Christian Hesse1-1/+3
2024-12-17mod/notification-email: $FlushEmailQueue: just return on empty queueGravatar Christian Hesse1-0/+4
2024-12-17mod/notification-email: $FlushEmailQueue: move the check up...Gravatar Christian Hesse1-4/+6
... as this needs to be done before creating a scheduler. 😜 Also remove the scheduler and return.
2024-12-17mod/notification-email: $FlushEmailQueue: create scheduler if missing...Gravatar Christian Hesse1-2/+8
... as it is required to be modified several times below.
2024-12-17mod/notification-email: $FlushEmailQueue: return on purgeGravatar Christian Hesse1-0/+6
2024-12-17mod/notification-email: $FlushEmailQueue: return on successGravatar Christian Hesse1-3/+4
2024-12-17global-functions: $WaitForFile: delay until "complete"...Gravatar Christian Hesse1-0/+10
Well, turns out that waiting for existence of a file is not sufficient. Chances are that a file is available just partly, so wait until the size no longer changes... Let's hope that works as expected. 🤞
2024-12-17mode-button: support led toggle without extra scriptGravatar Christian Hesse1-1/+1
2024-12-17leds-toggle-mode: toggle in one call...Gravatar Christian Hesse1-5/+1
... and drop the condition.
2024-12-17mod/notification-email: increase retry interval on failureGravatar Christian Hesse1-2/+4
2024-12-17mod/notification-email: drop useless safeguardGravatar Christian Hesse1-1/+1
Guess it was useful back in the day. Now the function exits early if the queue is empty... So this can never be zero.
2024-12-09Merge branch 'func-exit-error' into nextGravatar Christian Hesse12-39/+77
2024-12-09mode-button: $ModeButtonScheduler: explicitly name the variableGravatar Christian Hesse1-4/+8
2024-12-09mod/ssh-keys-import: $SSHKeysImportFile: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09check-routeros-update: pass script name to local functionGravatar Christian Hesse1-6/+8
2024-12-09mod/ssh-keys-import: $SSHKeysImport: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09Merge branch 'exit-error' into nextGravatar Christian Hesse57-57/+359
2024-12-09mod/scriptrunonce: $ScriptRunOnce: use $ExitError to indicate unintentional ↵Gravatar Christian Hesse1-2/+4
error
2024-12-09global-functions: $FetchHuge: passing boolean to function is still broken... ↵Gravatar Christian Hesse1-4/+4
🤨
2024-12-09update-tunnelbroker: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+7
2024-12-09mod/notification-telegram: $SendTelegram: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09update-gre-address: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09mod/notification-telegram: $FlushTelegramQueue: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09telegram-chat: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+8
2024-12-09mod/notification-ntfy: $SendNtfy: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-2/+4
2024-12-09sms-forward: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+7
2024-12-09mod/notification-ntfy: $FlushNtfyQueue: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09sms-action: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09mod/notification-matrix: $SendMatrix: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09ppp-on-up: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09mod/notification-matrix: $FlushMatrixQueue: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09packages-update: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+13
2024-12-09mod/notification-email: $SendEMail: use $ExitError to indicate unintentional ↵Gravatar Christian Hesse1-2/+4
error
2024-12-09ospf-to-leds: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09mod/notification-email: $FlushEmailQueue: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09netwatch-notify: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09mod/ipcalc: $IPCalc: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-2/+4
2024-12-09netwatch-dns: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+8
2024-12-09mod/inspectvar: $InspectVar: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-2/+4
2024-12-09mode-button: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+4
2024-12-09mod/bridge-port-vlan: $BridgePortVlan: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09log-forward: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+6
2024-12-09mod/bridge-port-to: $BridgePortTo: use $ExitError to indicate unintentional ↵Gravatar Christian Hesse1-2/+4
error
2024-12-09lease-script: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+7
2024-12-09mode-button: $ModeButtonScheduler: use $ExitError to indicate unintentional ↵Gravatar Christian Hesse1-2/+4
error
2024-12-09ipv6-update: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+7
2024-12-09global-functions: $SendNotification: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09ipsec-to-dns: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09global-functions: $ScriptInstallUpdate: use $ExitError to indicate ↵Gravatar Christian Hesse1-2/+4
unintentional error
2024-12-09hotspot-to-wpa: use $ExitError to indicate unintentional errorGravatar Christian Hesse3-3/+21
2024-12-09global-functions: $ExitError: give matching message for functionsGravatar Christian Hesse1-3/+5
2024-12-09hotspot-to-wpa-cleanup: use $ExitError to indicate unintentional errorGravatar Christian Hesse3-3/+15
2024-12-09gps-track: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09fw-addr-lists: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09firmware-upgrade-reboot: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+7
2024-12-09dhcp-to-dns: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09dhcp-lease-comment: use $ExitError to indicate unintentional errorGravatar Christian Hesse4-4/+20
2024-12-09daily-psk.capsman: use $ExitError to indicate unintentional errorGravatar Christian Hesse4-4/+20
2024-12-09collect-wireless-mac: use $ExitError to indicate unintentional errorGravatar Christian Hesse4-4/+20
2024-12-09check-routeros-update: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-2/+25
2024-12-09check-lte-firmware-upgrade: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09check-health: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+6
2024-12-09check-certificates: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09certificate-renew-issued: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+5
2024-12-09capsman-rolling-upgrade: use $ExitError to indicate unintentional errorGravatar Christian Hesse3-3/+15
2024-12-09capsman-download-packages: use $ExitError to indicate unintentional errorGravatar Christian Hesse3-3/+21
2024-12-09backup-upload: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+7
2024-12-09backup-partition: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+11
2024-12-09accesslist-duplicates: use $ExitError to indicate unintentional errorGravatar Christian Hesse4-4/+16
2024-12-09backup-email: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+9
2024-12-09backup-cloud: use $ExitError to indicate unintentional errorGravatar Christian Hesse1-1/+6
2024-12-09global-functions: $ExitError: give script name in messageGravatar Christian Hesse1-1/+1
2024-12-09global-functions: introduce $ExitError...Gravatar Christian Hesse1-0/+13
... as a simple macro to print error message on unintentional error.
2024-11-27netwatch-dns: explicitly expect type=A...routeros-7.16-7Gravatar Christian Hesse2-3/+3
... which is provided since 7.16beta7 (but require next stable release 7.16 as that is available meanwhile).
2024-11-27dhcp-to-dns: explicitly expect type=A...routeros-7.16-6Gravatar Christian Hesse2-5/+5
... which is provided since 7.16beta7 (but require next stable release 7.16 as that is available meanwhile). I had this on my wishlist for a long time, and opened an issue in March 2023 about it (SUP-111312). Back then I changed the code to support both, see commit 779b3b8872b23b784c331d7a454c86439046f5d3.
2024-11-27mod/ssh-keys-import: require RouterOS 7.16routeros-7.16-5Gravatar Christian Hesse2-2/+2
Actually the requirement bumped with the change in commits: * 9c945b1a3283bb352707c69630c579cf82484dcb mod/ssh-keys-import: $SSHKeysImportFile: simplify looping lines * 1f526b356121749991fee69cee5a6c728855c8f2 mod/ssh-keys-import: $SSHKeysImport: split with `:deserialize`
2024-11-27fw-addr-lists: require RouterOS 7.16routeros-7.16-4Gravatar Christian Hesse2-2/+2
Actually the requirement bumped with the change in commit: * 084c246ef0cab329fe981732089277fa8398800b fw-addr-lists: simplify looping lines
2024-11-22fw-addr-lists: spamhaus.org returned to 'GTS Root R4'Gravatar Christian Hesse2-3/+3
2024-11-15mode-button: do not act on disabled LEDGravatar Christian Hesse1-1/+2
2024-11-15mode-button: catch runtime errors in executed codeGravatar Christian Hesse1-1/+5
2024-11-15mode-button: fix the caller parameter to $LogPrintGravatar Christian Hesse1-3/+3
This is inside a function, so use just $0 here.
2024-11-14packages-update: drop check for device-mode downgrade...routeros-7.17beta5-1Gravatar Christian Hesse1-6/+0
... as things have been revised and this specific setting was removed.
2024-11-13hotspot-to-wpa-cleanup: revert display of timeout value...Gravatar Christian Hesse3-3/+3
... as the timeout is a time value, and showing "4w00:00:00" (with lots of zeros) is not any better. 😜 This reverts commit f1533b8962bc67d17e9f6b5666ae51ee4d1e1ff4.
2024-11-13hotspot-to-wpa-cleanup: prepare real timeout value in variable...Gravatar Christian Hesse3-6/+6
... to make sure it is not re-calculated for every single lease.
2024-11-12hotspot-to-wpa-cleanup: clean up daily onlyGravatar Christian Hesse3-3/+6
2024-11-12hotspot-to-wpa-cleanup: use the timeout in message...Gravatar Christian Hesse3-3/+3
... not the actual value.
2024-11-12check-routeros-update: always exit early if up to date...Gravatar Christian Hesse1-2/+4
... and just make the output and log dependent on terminal.