diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_maintenance.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index c2d348b9..202f8911 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -40,7 +40,7 @@ if [ "$HOSTNAME" = "$MAINNODE" ] ; then if [ ! -f $BACKUPFILE.xz ] ; then # make the backup DATE=$(date '+%Y-%m-%d') - pg_dump -x -O --column-inserts $PGDATABASE > "$BACKUPFILE" + pg_dump -x -O $PGDATABASE > "$BACKUPFILE" xz "$BACKUPFILE" # make the backup public |