rm /etc/init.d/pgbouncer
@ -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
- name: Add pgbouncer.ini
template:
src: pgbouncer.ini.jinja2