[Helper] Add MAILCOW_BACKUP_LOCATION as alternative to BACKUP_LOCATION to backup script, fixes #957
parent
5735c4a612
commit
67b3dec5a2
|
@ -1,5 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [[ ! -z ${MAILCOW_BACKUP_LOCATION} ]]; then
|
||||||
|
BACKUP_LOCATION="${MAILCOW_BACKUP_LOCATION}"
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ ! ${1} =~ (backup|restore) ]]; then
|
if [[ ! ${1} =~ (backup|restore) ]]; then
|
||||||
echo "First parameter needs to be 'backup' or 'restore'"
|
echo "First parameter needs to be 'backup' or 'restore'"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in New Issue