Syntax fixes

This commit is contained in:
gospodar 2023-02-11 19:16:15 +01:00
parent 0478ce746a
commit 6c40c9898d
2 changed files with 24 additions and 28 deletions

View File

@ -40,6 +40,7 @@ All configuration options can be found in the `backup.cfg` file. The script has
| db_username | ------> | Username for DB access |
| db_password | ------> | Password for DB access |
| db_name | ------> | Name of database |
| db_all | ------> | Dumb all databases instead of specific one |
To-Do List
----------
@ -47,4 +48,3 @@ To-Do List
- [ ] Rsync implementation via shell
- [ ] Rsync implementation via Docker
- [ ] Cron scheduler
- [ ] Refactor system logs

16
main.sh
View File

@ -168,14 +168,15 @@ function logbackup {
truncate -s 0 /var/log/fail2ban.log
fi
fi
esac
fi
}
function push {
if [ "$rsync_push" = true ]
then
#Push - Dockerized
if [ "push_clean" = true ]
if [ "$push_clean" = true ]
then
rm /opt/backify-$timestamp.tar.gz
fi
@ -201,6 +202,7 @@ function dockerbackup {
if [ "$docker_volumes" = true ]
then
echo "Backing up Docker volumes..." >&2
#Thanks piscue :)
for i in `docker inspect --format='{{.Name}}' $(docker ps -q) | cut -f2 -d\/`
do container_name=$i
mkdir -p $tmpdir/containers/$container_name
@ -247,6 +249,7 @@ function backup_db {
then
pg_dump -U "$db_username" "$db_name" -f $tmpdir/db/$db_name.sql
fi
fi
}
function runbackup {
@ -263,14 +266,7 @@ function runbackup {
# step 3 : vhost backup
vhostbackup
# step 4: log backup
if [ $system = "rhel" ]
then
logbackuprhel
fi
if [ $system = "ubuntu" ]
then
logbackupubuntu
fi
logbackup
# step 5: docker backup
dockerbackup
# step 6: db backup