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 9322e0e commit 6e6058dCopy full SHA for 6e6058d
ansible/roles/compute_init/files/compute-init.yml
@@ -64,12 +64,12 @@
64
mode: u=rX,g=rwX,o=
65
66
- name: Mount /mnt/cluster
67
- mount:
+ ansible.posix.mount:
68
path: /mnt/cluster
69
src: "{{ server_node_ip }}:/exports/cluster"
70
fstype: nfs
71
opts: ro,sync
72
- state: mounted
+ state: ephemeral # will be unmounted after sync, don't want it in fstab
73
register: _mount_mnt_cluster
74
ignore_errors: true
75
# exits from playbook if this failed below, allowing ansible-init to
0 commit comments