Skip to content
Snippets Groups Projects
Commit 9dba7220 authored by Simon Michnowicz's avatar Simon Michnowicz
Browse files

white space around mount commands removed as this broke my test cluster

parent 1f02edb8
No related branches found
No related tags found
1 merge request!43Simon nfs fix
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
when: nfsMounts is defined when: nfsMounts is defined
- name: "Mounting NFS mounts" - name: "Mounting NFS mounts"
mount: name={{ item.name }} src="{{ item.ipv4 }}:{{ item.src }} " fstype={{ item.fstype }} opts={{ item.opts }} state=mounted mount: name={{ item.name }} src="{{ item.ipv4 }}:{{ item.src }}" fstype={{ item.fstype }} opts={{ item.opts }} state=mounted
with_items: "{{ nfsMounts }}" with_items: "{{ nfsMounts }}"
notify: "restart rpcbind" notify: "restart rpcbind"
notify: "restart idmap" notify: "restart idmap"
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
when: firstMount | failed when: firstMount | failed
- name: "Mounting NFS mounts after failure" - name: "Mounting NFS mounts after failure"
mount: name={{ item.name }} src=" {{ item.ipv4 }}:{{ item.src }} " fstype={{ item.fstype }} opts={{ item.opts }} state=mounted mount: name={{ item.name }} src="{{ item.ipv4 }}:{{ item.src }}" fstype={{ item.fstype }} opts={{ item.opts }} state=mounted
with_items: "{{ nfsMounts }}" with_items: "{{ nfsMounts }}"
notify: "restart idmap" notify: "restart idmap"
notify: "restart rpcbind" notify: "restart rpcbind"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment