From 004dd25608b6592d1322d8228e5335a4087c6e4e Mon Sep 17 00:00:00 2001 From: Jan Date: Sun, 11 Feb 2024 19:53:26 +0100 Subject: [PATCH] add test fix gpg issue --- install/apache-couchdb-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/apache-couchdb-install.sh b/install/apache-couchdb-install.sh index ffa6ad5b..cd43f014 100644 --- a/install/apache-couchdb-install.sh +++ b/install/apache-couchdb-install.sh @@ -22,11 +22,12 @@ $STD apt-get install -y gpg msg_ok "Installed Dependencies" msg_info "Installing Apache CouchDB" -curl https://couchdb.apache.org/repo/keys.asc | gpg --dearmor | tee /usr/share/keyrings/couchdb-archive-keyring.gpg >/dev/null 2>&1 +curl -fsSL https://couchdb.apache.org/repo/keys.asc | gpg --dearmor -o /etc/apt/keyrings/couchdb-archive-keyring.gpg source /etc/os-release echo "deb https://apache.jfrog.io/artifactory/couchdb-deb/ ${VERSION_CODENAME} main" >/etc/apt/sources.list.d/couchdb.sources.list $STD apt-get update $STD apt-get install -y couchdb +msg_ok "Installed Apache CouchDB" motd_ssh customize