8 lines
209 B
Bash
Executable file
8 lines
209 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
set -o errexit
|
|
|
|
export MAILCOW_BACKUP_LOCATION="/var/backups"
|
|
|
|
/home/mailcow/mailcow-dockerized/helper-scripts/backup_and_restore.sh backup crypt redis rspamd postfix mysql --delete-days 7
|