We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bd7908 commit e6baeb2Copy full SHA for e6baeb2
ansible/roles/compute_init/tasks/export.yml
@@ -44,13 +44,13 @@
44
mode: u=rw,go=
45
delegate_to: "{{ groups['control'] | first }}"
46
47
-- name: Template manila share info to /exports/cluster
48
- ansible.builtin.template:
49
- src: os_manila_mount_share_info.j2
+- name: Copy manila share info to /exports/cluster
+ ansible.builtin.copy:
+ content: "{{ os_manila_mount_share_info_var | to_nice_yaml }}"
50
dest: /exports/cluster/manila_share_info.yml
51
- owner: ansible-init
52
- group: ansible-init
53
- mode: u=rw,go=
+ owner: slurm
+ group: root
+ mode: u=r,g=rw,o=
54
run_once: true
55
56
when: os_manila_mount_share_info is defined
ansible/roles/compute_init/templates/os_manila_mount_share_info.j2
0 commit comments