2015-06-25 11:16:47 +02:00
|
|
|
---
|
|
|
|
- name: Remove the couchdb package if it is installed
|
|
|
|
apt: pkg=couchdb* state=absent purge=true
|
|
|
|
tags: couchdb
|
|
|
|
|
|
|
|
- name: Remove the couchdb ppa
|
2018-08-09 18:48:09 +02:00
|
|
|
apt_repository: repo='{{ couchdb_ppa }}' state=absent update_cache=yes
|
2015-06-25 11:16:47 +02:00
|
|
|
register: update_apt_cache
|
|
|
|
tags: couchdb
|
|
|
|
|
|
|
|
- name: Change the open files limit
|
|
|
|
template: src=limits-couchdb.nofiles.j2 dest=/etc/security/limits.d/couchdb.nofiles.conf owner=root group=root mode=0444
|
|
|
|
tags: couchdb
|
|
|
|
|