Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

24 líneas
836 B

  1. ---
  2. - name: Ensure matrix-appservice-double-puppet paths exist
  3. ansible.builtin.file:
  4. path: "{{ item.path }}"
  5. state: directory
  6. mode: 0750
  7. owner: "{{ matrix_user_username }}"
  8. group: "{{ matrix_user_groupname }}"
  9. with_items:
  10. - path: "{{ matrix_appservice_double_puppet_base_path }}"
  11. when: true
  12. - path: "{{ matrix_appservice_double_puppet_config_path }}"
  13. when: true
  14. when: item.when | bool
  15. - name: Ensure matrix-appservice-double-puppet registration configuration installed
  16. ansible.builtin.copy:
  17. content: "{{ matrix_appservice_double_puppet_registration_configuration | to_nice_yaml(indent=2, width=999999) }}"
  18. dest: "{{ matrix_appservice_double_puppet_config_path }}/registration.yaml"
  19. mode: 0644
  20. owner: "{{ matrix_user_username }}"
  21. group: "{{ matrix_user_groupname }}"