From 27c8815b2535b396ba3a82a832cd3b4c6c61c9db Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Thu, 28 Dec 2017 17:47:18 +0100 Subject: [PATCH] library/roles/postgresql/files/postgresql-backup.sh: Fix the command line that builds the list of DBs to be backed up. --- postgresql/files/postgresql-backup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/postgresql/files/postgresql-backup.sh b/postgresql/files/postgresql-backup.sh index 43da19e..5f8ddba 100755 --- a/postgresql/files/postgresql-backup.sh +++ b/postgresql/files/postgresql-backup.sh @@ -34,7 +34,8 @@ LOCKFILE=${BACKUPDIR}/.dumplock umask 0077 if [ "$BUILD_DBLIST" == "yes" ] ; then # The psql -l command prints too much stuff - DB_LIST=$( psql -q -t -l -U postgres | grep -v template0 | grep -v template1 | grep -v : | grep -v ^\( | grep -v ^\- | awk '{print $1}' ) + #DB_LIST=$( psql -q -t -l -U postgres | grep -v template0 | grep -v template1 | grep -v : | grep -v ^\( | grep -v ^\- | awk '{print $1}' ) + DB_LIST=$( su - postgres -c "/usr/lib/postgresql/${PG_VERSION}/bin/oid2name " | awk '{print $2}' | tail -n +4 | grep -v template0 | grep -v template1 ) fi if [ ! -f $LOCKFILE ] ; then