Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-02-24 | global-functions: introduce $LogAndError | 1 | -0/+9 | ||
2020-02-24 | global-functions: $WaitTimeSync: rotate ntp servers minutely | 1 | -0/+4 | ||
Signed-off-by: Christian Hesse <mail@eworm.de> | |||||
2020-02-24 | global-functions: introduce $WaitTimeSync | 1 | -0/+10 | ||
2020-02-24 | global-functions: introduce $TimeIsSync | 1 | -0/+16 | ||
2020-02-24 | global-functions: introduce $MailServerIsUp | 1 | -0/+22 | ||
2020-02-06 | global-functions: introduce and use $CertificateNameByCN | 1 | -2/+13 | ||
2020-02-04 | global-config: drop $ScriptUpdatesConfigChangesIgnorechange-12 | 1 | -1/+1 | ||
Comment or remove $GlobalConfigVersion in global-config-overlay to disable change notifications. | |||||
2020-02-03 | global-functions: $CharacterReplace: do not limit string length | 1 | -2/+1 | ||
I've tried something like this to update a device: / system script set source=[ $CharacterReplace [ get global-config-overlay source ] "GlobalConfigVersion 10" "GlobalConfigVersion 11" ] global-config-overlay; This broke with global-config-overlay longer than 999 characters. So makes sure there is no limit for string length. | |||||
2020-02-02 | global-functions: $CertificateAvailable: simplify loop | 1 | -4/+4 | ||
2020-01-29 | README: update instructions to use $ScriptInstallUpdatechange-11 | 1 | -1/+1 | ||
2020-01-29 | global-functions: add $ScriptInstallUpdate | 1 | -0/+14 | ||
Just call without parameters to update scripts: [admin@MikroTik] > $InstallAndUpdate Add comma separated list of scripts to install and update: [admin@MikroTik] > $InstallAndUpdate cloud-backup[,upload-backup][,...] | |||||
2020-01-29 | global-functions: $CertificateAvailable: check whole chain | 1 | -0/+12 | ||
The root certificate is a self-signed certificate. Check for the issue certificate until we find the self-signed one. | |||||
2020-01-29 | global-functions: $CertificateAvailable: warn about crl download to flash | 1 | -0/+6 | ||
Downloading certificate crls to flash can fill up all available space. So warn about it! | |||||
2020-01-28 | global-functions: replace deprecated keep-result=no with output=none | 1 | -1/+1 | ||
2020-01-06 | global-functions: $CertificateDownload: properly name new certificates | 1 | -0/+5 | ||
2020-01-03 | global-functions: do not encode dash, dot, slash and underscore | 1 | -4/+3 | ||
2020-01-03 | global-functions: $Certificate*: add quoting around CN | 1 | -2/+2 | ||
2020-01-03 | global-functions: split $CertificateAvailable to $CertificateDownload | 1 | -17/+28 | ||
This allows to force download even if certificate is available. We need this for a clean update path with Let's Encrypt. | |||||
2020-01-01 | update copyright for 2020 | 1 | -1/+1 | ||
2019-12-10 | global-functions: define first, set later | 1 | -16/+34 | ||
2019-12-05 | global-functions: $DownloadPackage: retry on error | 1 | -12/+17 | ||
2019-12-03 | global-functions: introduce $ScriptFromTerminal | 1 | -0/+18 | ||
Checking whether or not started from terminal is tricky... We have to find the job for the script, find its top most parent and get its type. | |||||
2019-11-28 | global-functions: $DeviceInfo: append revision to model | 1 | -1/+5 | ||
2019-10-28 | global-functions: add architecture in device info | 1 | -2/+3 | ||
2019-10-14 | check-health: make threshold for voltage configurablechange-10 | 1 | -1/+1 | ||
2019-09-12 | introduce global-config-overlaychange-9 | 1 | -1/+1 | ||
2019-09-12 | global-functions: $DeviceInfo: handle configuration version | 1 | -0/+10 | ||
2019-09-12 | global-functions: introduce and use $DeviceInfo | 1 | -0/+29 | ||
2019-08-30 | script-updates: add donation hint in configuration warning notificationchange-8 | 1 | -1/+1 | ||
2019-08-27 | add script 'check-health'change-7 | 1 | -1/+1 | ||
This may be incomplete... Please report if you have missing PSUs, ttemperature sensors, whatever. | |||||
2019-08-18 | global-functions: support sending silent telegram notifications | 1 | -4/+6 | ||
2019-08-18 | global-functions: split off $SendEMail and $SendTelegram | 1 | -9/+31 | ||
2019-08-01 | global-functions: $DownloadPackage: re-introduce check for valid package | 1 | -0/+5 | ||
Even if fetch tool does its job right now... Chances are that the download servers have corrupted or empty files. | |||||
2019-07-26 | global-functions: add $RandomDelay | 1 | -0/+7 | ||
2019-07-26 | global-functions: add $GetRandom | 1 | -0/+13 | ||
2019-07-19 | global-functions: $DownloadPackage: fix downloading for CHR / x86_64 | 1 | -0/+3 | ||
2019-07-19 | add script 'upload-backup'change-6 | 1 | -1/+1 | ||
2019-07-17 | global-functions: add $ParseKeyValueStore | 1 | -0/+16 | ||
2019-07-16 | global-functions: $CharacterReplace: use same condition in loop | 1 | -1/+1 | ||
2019-07-16 | global-functions: append system note in e-mail signature | 1 | -1/+6 | ||
2019-06-14 | backup: split off cloud-backupchange-5 | 1 | -1/+1 | ||
Currently backup to MikroTik cloud is pretty unreliable and script can not catch errors at runtime. Looks like this does not change any time soon (Ticket#2019052022003204). So let's just split off the cloud backup to make sure email backup works as expected. | |||||
2019-04-30 | global-functions: $CertificateAvailable: fetch by CommonName | 1 | -8/+11 | ||
Now that we have a proper $UrlEncode function... Fetch certificates by CommonName. Also remove the PEM after import. | |||||
2019-04-30 | global-functions: add $WaitForFile, wait for file on fetch | 1 | -0/+22 | ||
The fetch command is asynchronous, the file is not guaranteed to be available when command terminates. I opened an issue at Mikrotik support (Ticket#2019041722004999), their answer: > You should perform a check in a loop. > :delay until file exist > > That can happen also with any configuration not just files. So add a function to wait for a file with given name. I have not seen this with other configuration, though. | |||||
2019-04-09 | drop deprecated mode= for fetch | 1 | -2/+2 | ||
2019-04-03 | script-updates: send global-config changes notification just once | 1 | -0/+1 | ||
2019-04-02 | script-updates: add option to ignore global-config changeschange-4 | 1 | -1/+1 | ||
2019-04-01 | check-certificates: support multiple passphraseschange-3 | 1 | -1/+1 | ||
2019-03-28 | global-functions: prevent infinite loop | 1 | -2/+4 | ||
2019-03-20 | global-functions: encode all non-alphanumeric characters | 1 | -2/+5 | ||
2019-02-28 | global-functions: remove extra check in $DownloadPackagerouteros-6.44rc1 | 1 | -7/+0 | ||
Should be fixed in RouterOS 6.44rc1 with changelog: *) fetch - improved file downloading to slow memory; | |||||
2019-02-21 | global-functions: add $ScriptLock | 1 | -0/+10 | ||
2019-02-21 | global-functions: drop $Read, use :return directly | 1 | -5/+0 | ||
2019-02-14 | global-functions: detect failed package downloads | 1 | -1/+9 | ||
2019-02-13 | global-functions: introduce and use $CleanFilePath | 1 | -4/+21 | ||
2019-02-13 | global-functions: remove file on failed download | 1 | -3/+9 | ||
2019-02-11 | global-functions: add missing colon | 1 | -1/+1 | ||
2019-02-08 | global-functions: prevent infinite loop in $CharacterReplace | 1 | -0/+4 | ||
2019-02-08 | global-functions: add $CharacterReplace | 1 | -0/+15 | ||
2019-01-04 | global: variable names are CamelCase | 1 | -58/+58 | ||
___ _ ___ __ / _ )(_)__ _ / _/__ _/ /_ / _ / / _ `/ / _/ _ `/ __/ /____/_/\_, / /_/ \_,_/\__/ _ __ /___/ _ __ | | / /___ __________ (_)___ ____ _/ / | | /| / / __ `/ ___/ __ \/ / __ \/ __ `/ / | |/ |/ / /_/ / / / / / / / / / / /_/ /_/ |__/|__/\__,_/_/ /_/ /_/_/_/ /_/\__, (_) /____/ RouterOS has some odd behavior when it comes to variable names. Let's have a look at the interfaces: [admin@MikroTik] > / interface print where name=en1 Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU 0 RS en1 ether 1500 1598 That looks ok. Now we use a script: { :local interface "en1"; / interface print where name=$interface; } And the result... [admin@MikroTik] > { :local interface "en1"; {... / interface print where name=$interface; } Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU 0 RS en1 ether 1500 1598 ... still looks ok. We make a little modification to the script: { :local name "en1"; / interface print where name=$name; } And the result: [admin@MikroTik] > { :local name "en1"; {... / interface print where name=$name; } Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU 0 RS en1 ether 1500 1598 1 S en2 ether 1500 1598 2 S en3 ether 1500 1598 3 S en4 ether 1500 1598 4 S en5 ether 1500 1598 5 R br-local bridge 1500 1598 Ups! The filter has no effect! That happens whenever the variable name ($name) matches the property name (name=). And another modification: { :local type "en1"; / interface print where name=$type; } And the result: [admin@MikroTik] > { :local type "en1"; {... / interface print where name=$type; } Flags: D - dynamic, X - disabled, R - running, S - slave # NAME TYPE ACTUAL-MTU L2MTU Ups! Nothing? Even if the variable name ($type) matches whatever property name (type=) things go wrong. The answer from MikroTik support (in Ticket#2019010222000454): > This is how scripting works in RouterOS and we will not fix it. To get around this we use variable names in CamelCase. Let's hope Mikrotik never ever introduces property names in CamelCase... *fingers crossed* | |||||
2019-01-03 | global-{config,functions}: move variables, make independent | 1 | -1/+6 | ||
2019-01-03 | script-updates: add configuration versioning | 1 | -0/+3 | ||
2019-01-02 | update copyright for 2019 | 1 | -1/+1 | ||
2018-12-28 | global-functions: properly define global functions | 1 | -0/+2 | ||
2018-12-28 | global-functions: update comment in $SendNotification | 1 | -1/+1 | ||
2018-12-28 | global-functions: add $DownloadPackage | 1 | -0/+25 | ||
... and make script 'capsman-download-packages' use it. | |||||
2018-12-27 | global-functions: add $GetMacVendor | 1 | -0/+15 | ||
2018-12-20 | global-functions: make $CertificateAvailable work on CommonName | 1 | -7/+8 | ||
This should prevent endless certificate switching for Let's Encrypt cross-signed intermediate certificates. | |||||
2018-12-12 | remove extra dollar sign | 1 | -2/+2 | ||
2018-11-28 | global-functions: add identity tag in $SendNotification | 1 | -2/+4 | ||
... and send subject in telegram message. | |||||
2018-11-09 | global-functions: use 'print count-only' | 1 | -1/+1 | ||
2018-11-09 | global-functions: add function to read user input | 1 | -0/+5 | ||
2018-10-16 | global-functions: import certificates if required | 1 | -3/+24 | ||
Signed-off-by: Christian Hesse <mail@eworm.de> | |||||
2018-10-15 | global-functions: fix missing colon | 1 | -2/+2 | ||
2018-10-12 | global-functions: make sure parameters are strings | 1 | -6/+7 | ||
2018-10-10 | daily-psk: move function GeneratePSK from global-functions | 1 | -42/+0 | ||
2018-10-09 | global-functions: add UrlEncode and use in SendNotification | 1 | -1/+25 | ||
2018-10-09 | global-functions: add function to notify via e-mail and telegram | 1 | -0/+35 | ||
2018-10-09 | global-functions: move daily psk secrets to global-config | 1 | -15/+4 | ||
2018-10-09 | make GeneratePSK a global function | 1 | -0/+52 | ||
2018-10-09 | add global-functions | 1 | -0/+6 | ||