diff --git a/ansible/roles/pgbouncer/tasks/main.yml b/ansible/roles/pgbouncer/tasks/main.yml index ce187b6..ab6099b 100644 --- a/ansible/roles/pgbouncer/tasks/main.yml +++ b/ansible/roles/pgbouncer/tasks/main.yml @@ -3,6 +3,17 @@ apt: name: pgbouncer +- name: Remove pgbouncer from init.d (may conflict with systemd service) + file: + path: /etc/init.d/pgbouncer + state: absent + when: is_docker + +- name: Update rc.d to reflect init.d removal + command: + cmd: update-rc.d pgbouncer remove + when: is_docker + - name: Add pgbouncer.ini template: src: pgbouncer.ini.jinja2