Skip to content

Commit cf6aadb

Browse files
authored
Update Debian.yml
1 parent fc5a661 commit cf6aadb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

roles/couchdb/tasks/Debian.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,19 @@
55
curl https://couchdb.apache.org/repo/keys.asc | gpg --dearmor | sudo tee /usr/share/keyrings/couchdb-archive-keyring.gpg >/dev/null 2>&1
66
source /etc/os-release
77
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-
8+
ignore_errors: yes
9+
910
# install couchdb
1011
- name: Install CouchDB
1112
shell: |
1213
echo "couchdb couchdb/mode select none" | debconf-set-selections
1314
apt update
1415
DEBIAN_FRONTEND=noninteractive apt-get install -y --force-yes couchdb
15-
16+
ignore_errors: yes
17+
1618
# configure couchdb
1719
- name: Configure couchdb
1820
shell: |
1921
sed -i '95s/;//g' /opt/couchdb/etc/local.ini
2022
systemctl restart couchdb
23+
ignore_errors: yes

0 commit comments

Comments
 (0)