mirror of
https://github.com/roles-ansible/role-postgresql-backup.git
synced 2024-08-16 10:19:49 +02:00
13 lines
317 B
YAML
13 lines
317 B
YAML
---
|
|
- name: "Install PostgreSQL client"
|
|
become: true
|
|
package:
|
|
name: "{{ postgresql_backup.required_packages }}"
|
|
state: present
|
|
|
|
- name: "Install tar and gzip"
|
|
become: true
|
|
package:
|
|
name: "{{ postgresql_backup.optional_packages }}"
|
|
state: present
|
|
when: postgresql_backup.create_tar_gz | bool
|