|
@@ -47,6 +47,19 @@ if type "ejabberdctl" > /dev/null; then
|
|
|
mv "$EJABBERD_BACKUP" $BACKUP_TEMP/ejabberd.backup
|
|
|
fi
|
|
|
|
|
|
+# Backup PostgreSQL data if pg_dump is available, and user postgres exists
|
|
|
+if type "pg_dump" > /dev/null; then
|
|
|
+ if id -u "postgres" > /dev/null 2>&1; then
|
|
|
+ PG_DBS=`sudo -i -u postgres psql template1 -t -c "SELECT datname FROM pg_database WHERE datname NOT LIKE 'template_'"`
|
|
|
+ for PG_DB in $PG_DBS
|
|
|
+ do
|
|
|
+ PG_BACKUP=`sudo -u postgres mktemp -t pg_dump_XXXX`
|
|
|
+ sudo -u postgres -i pg_dump -Z3 -Fc "${PG_DB}" > "${PG_BACKUP}"
|
|
|
+ mv "${PG_BACKUP}" "${BACKUP_TEMP}/pgsql_${PG_DB}_Fc.dump"
|
|
|
+ done
|
|
|
+ fi
|
|
|
+fi
|
|
|
+
|
|
|
# Backup PostgreSQL data if pg_dump is available
|
|
|
if type "pg_dump" > /dev/null; then
|
|
|
PG_DBS=`sudo -i -u postgres psql template1 -t -c "SELECT datname FROM pg_database WHERE datname NOT LIKE 'template_'"`
|