From 5213625cb85c516ea6c9aef365e487256eaa9443 Mon Sep 17 00:00:00 2001 From: Georg Ledermann Date: Sat, 27 Nov 2021 08:04:38 +0100 Subject: [PATCH] Install aws-cli as package --- postgres-backup-s3/install.sh | 4 +--- postgres-restore-s3/install.sh | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/postgres-backup-s3/install.sh b/postgres-backup-s3/install.sh index 4c8fef1..9f624aa 100644 --- a/postgres-backup-s3/install.sh +++ b/postgres-backup-s3/install.sh @@ -10,9 +10,7 @@ apk update apk add postgresql # install s3 tools -apk add python3 py3-pip -pip install awscli -apk del py3-pip +apk add aws-cli # install go-cron apk add curl diff --git a/postgres-restore-s3/install.sh b/postgres-restore-s3/install.sh index e872274..f3b66b3 100644 --- a/postgres-restore-s3/install.sh +++ b/postgres-restore-s3/install.sh @@ -9,9 +9,7 @@ apk update apk add postgresql # install s3 tools -apk add python py-pip -pip install awscli -apk del py-pip +apk add aws-cli # cleanup rm -rf /var/cache/apk/*