To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / deploy / config / cron.daily / 00-backup-db @ 1605:18643ab36008

History | View | Annotate | Download (191 Bytes)

1
#!/bin/sh
2

    
3
outfile="/var/files/backups/postgres-dumpall-`date +%Y%m%d%H%M`"
4

    
5
oldmask=`umask`
6
umask 0277
7

    
8
su postgres -c /usr/bin/pg_dumpall > "$outfile" && bzip2 "$outfile"
9

    
10
umask "$oldmask"