Browse Source

fcn-backup: meilleure detection de postgresql

Guillaume 7 years ago
parent
commit
78f8e180cd
1 changed files with 13 additions and 0 deletions
  1. 13 0
      fcn-backup

+ 13 - 0
fcn-backup

@@ -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_'"`