From 765d62357b9f34b4a772ff8d04103b0fcfcf4204 Mon Sep 17 00:00:00 2001 From: jem Date: Sun, 20 Dec 2020 13:40:47 +0100 Subject: [PATCH] verbosity is a bad idea for a pipeline input --- infrastrucure/docker/image/resources/restore.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastrucure/docker/image/resources/restore.sh b/infrastrucure/docker/image/resources/restore.sh index 1c1bd77..511320a 100755 --- a/infrastrucure/docker/image/resources/restore.sh +++ b/infrastrucure/docker/image/resources/restore.sh @@ -23,12 +23,12 @@ function main() { --no-password -c "CREATE DATABASE \"${POSTGRES_DB}\";" # restore roles - restic -v -r ${RESTIC_REPOSITORY}/pg-role dump latest stdin | \ + restic -r ${RESTIC_REPOSITORY}/pg-role dump latest stdin | \ psql -d template1 -h ${POSTGRES_SERVICE} -p ${POSTGRES_PORT} -U ${POSTGRES_USER} \ --no-password # restore db - restic -v -r ${RESTIC_REPOSITORY}/pg-database dump latest stdin | \ + restic -r ${RESTIC_REPOSITORY}/pg-database dump latest stdin | \ psql -d ${POSTGRES_DB} -h ${POSTGRES_SERVICE} -p ${POSTGRES_PORT} -U ${POSTGRES_USER} \ --no-password