mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 14:36:52 +00:00
database-restore: only get the first match
Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
parent
1b0cace7a8
commit
a622fcc894
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ if ( [ -f "$DATADIR/PG_VERSION" ] && [ "$PG_MAJOR" != "$(cat "$DATADIR/PG_VERSIO
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Get the Owner
|
# Get the Owner
|
||||||
DB_OWNER="$(grep -a "$GREP_STRING" "$DUMP_FILE" | grep -oP 'Owner:.*$' | sed 's|Owner:||;s| ||g')"
|
DB_OWNER="$(grep -a "$GREP_STRING" "$DUMP_FILE" | head -1 | grep -oP 'Owner:.*$' | sed 's|Owner:||;s| ||g')"
|
||||||
if [ "$DB_OWNER" = "$POSTGRES_USER" ]; then
|
if [ "$DB_OWNER" = "$POSTGRES_USER" ]; then
|
||||||
echo "Unfortunately was the found database owner of the dump file the same as the POSTGRES_USER $POSTGRES_USER"
|
echo "Unfortunately was the found database owner of the dump file the same as the POSTGRES_USER $POSTGRES_USER"
|
||||||
echo "It is not possible to import a database dump from this database owner."
|
echo "It is not possible to import a database dump from this database owner."
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue