mirror of
				https://gitlab.crans.org/bde/nk20-scripts
				synced 2025-10-30 22:59:52 +01:00 
			
		
		
		
	Backups are sent to Zamok
This commit is contained in:
		| @@ -1,11 +1,9 @@ | |||||||
| #!/bin/bash | #!/bin/bash | ||||||
| # Create backups directory | # Create temporary backups directory | ||||||
| [[ -d /var/www/note_kfet/backups ]] || (mkdir /var/www/note_kfet/backups && chown www-data:www-data /var/www/note_kfet/backups) | [[ -d /tmp/note-backups ]] || mkdir /tmp/note-backups | ||||||
| date=$(date +%Y-%m-%d) | date=$(date +%Y-%m-%d) | ||||||
| # Backup database and save it as tar archive | # Backup database and save it as tar archive | ||||||
| su postgres -c "pg_dump -F t note_db" | tee "/var/www/note_kfet/backups/$date.tar" > /dev/null | su postgres -c "pg_dump -F t note_db" | tee "/tmp/note-backups/$date.tar" > /dev/null | ||||||
| # Compress backup as gzip | # Compress backup as gzip | ||||||
| gzip "/var/www/note_kfet/backups/$date.tar" | gzip "/tmp/note-backups/$date.tar" | ||||||
| chown www-data:www-data "/var/www/note_kfet/backups/$date.tar.gz" | scp "/tmp/note-backups/$date.tar.gz" "club-bde@zamok.crans.org:backup/$date.tar.gz" | ||||||
| # Delete backups that have more than 30 days |  | ||||||
| find /var/www/note_kfet/backups -type f -mtime +30 -exec rm {} \; |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user