This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
temp_file="/tmp/cbrn.txt" | |
email="" | |
certbot renew > $temp_file 2>&1 | |
mail -s "Letsencrypt certificates renewal" $email < $temp_file | |
rm $temp_file | |
service nginx reload |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:local saveUserDB true | |
:local saveSysBackup true | |
:local encryptSysBackup false | |
:local saveRawExport true | |
:local FTPServer "ftp.domain.tld" | |
:local FTPPort 21 | |
:local FTPUser "mikrotik" | |
:local FTPPass "secretpass" |