add another test to get the key error solved

This commit is contained in:
Jan 2024-02-11 20:02:59 +01:00
parent 004dd25608
commit 403dcaabb3
1 changed files with 3 additions and 1 deletions

View File

@ -23,8 +23,10 @@ msg_ok "Installed Dependencies"
msg_info "Installing Apache CouchDB" msg_info "Installing Apache CouchDB"
curl -fsSL https://couchdb.apache.org/repo/keys.asc | gpg --dearmor -o /etc/apt/keyrings/couchdb-archive-keyring.gpg curl -fsSL https://couchdb.apache.org/repo/keys.asc | gpg --dearmor -o /etc/apt/keyrings/couchdb-archive-keyring.gpg
gpg --no-default-keyring --keyring gnupg-ring:/etc/apt/trusted.gpg.d/couchdb-archive-keyring.gpg --keyserver keyserver.ubuntu.com --recv-keys 0EE62FB37A00258D
chmod a+r /etc/apt/trusted.gpg.d/couchdb-archive-keyring.gpg
source /etc/os-release source /etc/os-release
echo "deb https://apache.jfrog.io/artifactory/couchdb-deb/ ${VERSION_CODENAME} main" >/etc/apt/sources.list.d/couchdb.sources.list echo "deb [signed-by=/etc/apt/keyrings/couchdb-archive-keyring.gpg] 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 update
$STD apt-get install -y couchdb $STD apt-get install -y couchdb
msg_ok "Installed Apache CouchDB" msg_ok "Installed Apache CouchDB"