trabajo-afectivo/contrib/backup/zammad_backup.sh

39 lines
639 B
Bash
Raw Normal View History

2016-12-10 13:48:33 +00:00
#!/bin/bash
#
# zammad backup script
#
PATH=/sbin:/bin:/usr/sbin:/usr/bin:
2017-05-07 10:20:59 +00:00
BACKUP_SCRIPT_PATH="$(dirname $(realpath $0))"
2016-12-10 13:48:33 +00:00
2017-05-07 10:20:59 +00:00
if [ -f "${BACKUP_SCRIPT_PATH}/config" ]; then
# import config
. ${BACKUP_SCRIPT_PATH}/config
else
echo -e "\n The 'config' file is missing!"
echo -e " Please copy ${BACKUP_SCRIPT_PATH}/config.dist to ${BACKUP_SCRIPT_PATH}/config before running $0!\n"
exit 1
fi
2016-12-10 13:48:33 +00:00
# import functions
2017-05-07 10:20:59 +00:00
. ${BACKUP_SCRIPT_PATH}/functions
2016-12-10 13:48:33 +00:00
# exec backup
2017-05-07 10:20:59 +00:00
start_backup_message
get_zammad_dir
check_database_config_exists
2016-12-10 13:48:33 +00:00
delete_old_backups
2016-12-10 13:48:33 +00:00
get_backup_date
backup_dir_create
backup_files
backup_db
2017-05-07 10:20:59 +00:00
finished_backup_message