diff --git a/roles/backup/README.md b/roles/backup/README.md index d2004d72e4..9d4e43ce83 100644 --- a/roles/backup/README.md +++ b/roles/backup/README.md @@ -75,7 +75,11 @@ It is also possible to tie the lifetime of the backup files to that of the AWXBa clean_backup_on_delete: true ``` -To customize the pg_dump command that will be executed on a backup use the `pg_dump_suffix` variable. This variable will append your provided pg_dump parameters to the end of the 'standard' command. +To customize the pg_dump command that will be executed on a backup use the `pg_dump_suffix` variable. This variable will append your provided pg_dump parameters to the end of the 'standard' command. For example to exclude the data from 'main_jobevent' and 'main_job' to decrease the size of the backup use: + +``` +pg_dump_suffix: "--exclude-table-data 'main_jobevent*' --exclude-table-data 'main_job'" +``` Testing ----------------