source:
trunk/packages/xvm-db-backup/xvm-db-backup
@
1656
Last change on this file since 1656 was 1656, checked in by broder, 16 years ago | |
---|---|
|
|
File size: 278 bytes |
Line | |
---|---|
1 | #!/bin/bash |
2 | |
3 | set -e |
4 | |
5 | kinit -k "daemon/$(hostname -f)" |
6 | aklog sipb |
7 | |
8 | filename="$(date +%Y-%m-%d-%H-%M.sql.gz)" |
9 | |
10 | /usr/bin/pg_dump -U "$(invirt-getconf db.user)" \ |
11 | -h "$(invirt-getconf db.host)" \ |
12 | "$(invirt-getconf db.dbname)" | gzip - >"$filename" |
Note: See TracBrowser
for help on using the repository browser.