Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- ---
-
- - name: Ensure Matrix base paths exists
- ansible.builtin.file:
- path: "{{ item }}"
- state: directory
- mode: "{{ matrix_base_data_path_mode }}"
- owner: "{{ matrix_user_username }}"
- group: "{{ matrix_user_groupname }}"
- with_items:
- - "{{ matrix_base_data_path }}"
- - "{{ matrix_bin_path }}"
-
- - name: Ensure remove-all script created
- ansible.builtin.template:
- src: "{{ role_path }}/templates/bin/remove-all.j2"
- dest: "{{ matrix_bin_path }}/remove-all"
- mode: 0750
|