Matrix Docker Ansible eploy
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

19 linhas
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"