Parcourir la source

Merge pull request #260 from jplock/jp-compress-db-backup

Compress Postgres backup file
Luke Cyca il y a 10 ans
Parent
révision
d616d63da5
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      roles/tarsnap/files/tarsnap.sh

+ 1
- 1
roles/tarsnap/files/tarsnap.sh Voir le fichier

@@ -58,7 +58,7 @@ fi
58 58
 cd /home/
59 59
 
60 60
 # Dump PostgreSQL to file
61
-sudo -u postgres pg_dumpall -c > /decrypted/postgresql-backup.sql
61
+sudo -u postgres pg_dumpall -c | gzip > /decrypted/postgresql-backup.sql.gz
62 62
 
63 63
 # Do backups
64 64
 for dir in $DIRS; do

Chargement…
Annuler
Enregistrer