Make sure that restoration script sets correct rights on files

These changes ensure that, no matter if migrating from a online instance or importing some other Zammad-Export, that the filesystem rights on the Zammad-Directory are always correct.

We're using fixed user "zammad" here, the Backup-Documentation needs enhancement and will hold a warning for this to ensure, other users don't crash here.
This commit is contained in:
MrGeneration 2019-04-10 14:44:44 +02:00 committed by Thorsten Eckel
parent e26db17d75
commit e6697cdd21

View file

@ -155,6 +155,8 @@ function stop_zammad () {
function restore_zammad () {
echo "# Restoring Files"
tar -C / --overwrite -xzf ${BACKUP_DIR}/${RESTORE_FILE_DATE}_zammad_files.tar.gz
echo "# Ensuring correct file rights ..."
chown -R zammad:zammad ${ZAMMAD_DIR}
if [ "${DB_ADAPTER}" == "postgresql" ]; then
echo "# Restoring PostgrSQL DB"