Browse Source

Removed --insecure parameter from curl commands (#143)

pull/148/head
Gregor Riepl 2 years ago
committed by GitHub
parent
commit
f7e74db8d2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      postgres-backup-s3/install.sh
  2. 2
      s3cmd/install.sh

2
postgres-backup-s3/install.sh

@ -14,7 +14,7 @@ apk add aws-cli
# install go-cron
apk add curl
curl -L --insecure https://github.com/odise/go-cron/releases/download/v0.0.6/go-cron-linux.gz | zcat > /usr/local/bin/go-cron
curl -L https://github.com/odise/go-cron/releases/download/v0.0.6/go-cron-linux.gz | zcat > /usr/local/bin/go-cron
chmod u+x /usr/local/bin/go-cron
apk del curl

2
s3cmd/install.sh

@ -15,6 +15,6 @@ rm -rf /tmp/s3cmd
# install go-cron
apk add --no-cache curl
curl -L --insecure https://github.com/odise/go-cron/releases/download/v0.0.6/go-cron-linux.gz | zcat > /usr/local/bin/go-cron
curl -L https://github.com/odise/go-cron/releases/download/v0.0.6/go-cron-linux.gz | zcat > /usr/local/bin/go-cron
chmod u+x /usr/local/bin/go-cron
apk del curl
Loading…
Cancel
Save