Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- ---
- - name: Fail if required settings not defined
- fail:
- msg: >-
- You need to define a required configuration setting (`{{ item }}`).
- when: "vars[item] == ''"
- with_items:
- - "matrix_backup_borg_ssh_key_private"
- - "matrix_backup_borg_location_repositories"
- # - "matrix_backup_borg_storage_encryption_passphrase"
- # when: "matrix_backup_borg_unknown_unencrypted_repo_access_is_ok == false"
- # - "matrix_backup_borg_storage_encryption_passphrase"
-
- - name: Fail if encryption passphrase is undefined unless repository is unencrypted
- fail:
- msg: >-
- You need to define a required passphrase.
- when: "matrix_backup_borg_storage_encryption_passphrase == '' and not matrix_backup_borg_encryption == 'none'"
|