Skip to content

Instantly share code, notes, and snippets.

@deviousasti
Last active September 7, 2020 09:36
Show Gist options
  • Save deviousasti/ea9f255aea7617dff3b8a0926c72705b to your computer and use it in GitHub Desktop.
Save deviousasti/ea9f255aea7617dff3b8a0926c72705b to your computer and use it in GitHub Desktop.
Install CoucbDB in Ansible
- name: Add the CouchDB repository
apt_repository:
repo: deb https://apache.bintray.com/couchdb-deb bionic main
state: present
update_cache: no
- name: Install the CouchDB repository key
apt_key:
keyserver: keyserver.ubuntu.com
id: 8756C4F765C9AC3CB6B85D62379CE192D401AB61
- name: Update packages
apt: update_cache=yes
- name: Install CouchDB
apt: name=couchdb state=latest
# Need to patch
# sudo nano /opt/couchdb/etc/local.ini
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment