Change dirs for tar
This commit is contained in:
parent
b2a4a926a2
commit
2a83410803
@ -9,18 +9,19 @@ mysql_user=root
|
|||||||
mysql_pass=YOURPASSWORDHERE
|
mysql_pass=YOURPASSWORDHERE
|
||||||
|
|
||||||
cd $backup_path
|
cd $backup_path
|
||||||
|
mkdir database
|
||||||
|
|
||||||
# Dump the MariaDB database
|
# Dump the MariaDB database
|
||||||
mysqldump -u=$mysql_user -p=$mysql_pass bookstackdb > bookstack_db.sql
|
mysqldump -u=$mysql_user -p=$mysql_pass bookstackdb > $backup_path/database/bookstack_db.sql
|
||||||
|
|
||||||
# Compress the SQL dump and the BookStack files
|
# Compress the SQL dump and the BookStack files
|
||||||
tar cvf bookstack_backup_$date.tar.gz bookstack_backup.sql /var/www/BookStack
|
tar zcvf bookstack_backup_$date.tar.gz $backup_path/database /var/www/BookStack
|
||||||
|
|
||||||
# Delete temporary .sql
|
# Delete temporary .sql
|
||||||
rm -rf bookstack_db.sql
|
rm -rf $backup_path/database/bookstack_db.sql
|
||||||
|
|
||||||
# Delete backups older than 7 days
|
# Delete backups older than 7 days
|
||||||
find $backup_path -type f -mtime +7 -name '*.gz' -delete
|
find $backup_path -type f -mtime +7 -name '*.gz' -delete
|
||||||
|
|
||||||
# Add your desired rclone options below
|
# Add your desired rclone options below
|
||||||
rclone sync $backup_path $rclone_backup_path
|
rclone sync $backup_path*.tar.gz $rclone_backup_path
|
Loading…
Reference in New Issue
Block a user