From 5407cd1065e86b3f041cf8f894f21a0ecfb62251 Mon Sep 17 00:00:00 2001
From: Georg Ledermann <georg@ledermann.dev>
Date: Sat, 27 Nov 2021 08:20:17 +0100
Subject: [PATCH] Installing the PostgreSQL client is sufficient

---
 postgres-backup-s3/install.sh  | 2 +-
 postgres-restore-s3/install.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/postgres-backup-s3/install.sh b/postgres-backup-s3/install.sh
index 9f624aa..f28d7a4 100644
--- a/postgres-backup-s3/install.sh
+++ b/postgres-backup-s3/install.sh
@@ -7,7 +7,7 @@ set -eo pipefail
 apk update
 
 # install pg_dump
-apk add postgresql
+apk add postgresql-client
 
 # install s3 tools
 apk add aws-cli
diff --git a/postgres-restore-s3/install.sh b/postgres-restore-s3/install.sh
index f3b66b3..b416ac3 100644
--- a/postgres-restore-s3/install.sh
+++ b/postgres-restore-s3/install.sh
@@ -6,7 +6,7 @@ set -eo pipefail
 apk update
 
 # install pg_dump
-apk add postgresql
+apk add postgresql-client
 
 # install s3 tools
 apk add aws-cli