forked from ISTI-ansible-roles/ansible-roles
7 lines
148 B
YAML
7 lines
148 B
YAML
|
---
|
||
|
- name: Install the pgpool package
|
||
|
apt: name={{ item }} state=installed
|
||
|
with_items: '{{ pgpool_pkgs }}'
|
||
|
tags: [ 'postgresql', 'pgpool' ]
|
||
|
|