ansible-roles/postgresql/tasks/pgpool-ii.yml

7 lines
148 B
YAML
Raw Normal View History

---
- name: Install the pgpool package
apt: name={{ item }} state=installed
with_items: '{{ pgpool_pkgs }}'
tags: [ 'postgresql', 'pgpool' ]