Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

19 satır
654 B

  1. ---
  2. - name: Fail if required Postgres settings not defined
  3. ansible.builtin.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"