We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c3ac5b commit f9fa0f9Copy full SHA for f9fa0f9
roles/couchdb/tasks/Debian.yml
@@ -1,12 +1,12 @@
1
# pre-installation
2
- name: Import repository
3
shell: |
4
- apt install -y curl apt-transport-https gnupg
+ apt-cache install -y curl apt-transport-https gnupg
5
curl https://couchdb.apache.org/repo/keys.asc | gpg --dearmor | sudo tee /usr/share/keyrings/couchdb-archive-keyring.gpg >/dev/null 2>&1
6
source /etc/os-release
7
echo "deb [signed-by=/usr/share/keyrings/couchdb-archive-keyring.gpg] https://apache.jfrog.io/artifactory/couchdb-deb/ ${VERSION_CODENAME} main" | sudo tee /etc/apt/sources.list.d/couchdb.list >/dev/null
8
apt update
9
- apt install -y couchdb
+ apt-cache install -y couchdb
10
11
12
0 commit comments