forked from ISTI-ansible-roles/ansible-roles
36 lines
992 B
YAML
36 lines
992 B
YAML
|
---
|
||
|
- name: Backup script for the postgresql database(s)
|
||
|
copy: src=postgresql-backup.sh dest=/usr/local/sbin/postgresql-backup owner=root mode=0744
|
||
|
tags:
|
||
|
- pg_backup
|
||
|
- postgresql
|
||
|
- postgres
|
||
|
|
||
|
- name: cron job for the postgresql database(s) backup
|
||
|
copy: src=postgresql-backup.cron dest=/etc/cron.daily/postgresql-backup owner=root mode=0744
|
||
|
tags:
|
||
|
- pg_backup
|
||
|
- postgresql
|
||
|
- postgres
|
||
|
|
||
|
- name: postgresql backup defaults
|
||
|
template: src=pg_backup-default.j2 dest=/etc/default/pg_backup owner=root mode=0744
|
||
|
tags:
|
||
|
- pg_backup
|
||
|
- postgresql
|
||
|
- postgres
|
||
|
|
||
|
- name: authorization file for the database backup
|
||
|
template: src=pgpass.j2 dest={{ pg_backup_pass_file }} owner=root mode=0600
|
||
|
tags:
|
||
|
- pg_backup
|
||
|
- postgresql
|
||
|
- postgres
|
||
|
|
||
|
- name: Create the postgresql backups data directory
|
||
|
file: dest={{ pg_backup_destdir }} owner=postgres group=postgres mode=700 recurse=yes state=directory
|
||
|
tags:
|
||
|
- pg_backup
|
||
|
- postgresql
|
||
|
- postgres
|