Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 regels
638 B

  1. ---
  2. - name: Fail if required Postgres settings not defined
  3. fail:
  4. msg: >-
  5. You need to define a required configuration setting (`{{ item }}`).
  6. when: "vars[item] == ''"
  7. with_items:
  8. - "matrix_postgres_backup_connection_hostname"
  9. - "matrix_postgres_backup_connection_username"
  10. - "matrix_postgres_backup_connection_password"
  11. - "matrix_postgres_backup_connection_port"
  12. - "matrix_postgres_backup_schedule"
  13. - "matrix_postgres_backup_keep_days"
  14. - "matrix_postgres_backup_keep_weeks"
  15. - "matrix_postgres_backup_keep_months"
  16. - "matrix_postgres_backup_path"
  17. - "matrix_postgres_backup_databases"