diff --git a/roles/nfs-client/tasks/mountFileSystem.yml b/roles/nfs-client/tasks/mountFileSystem.yml
index 1e5c7e99c52baa0e02405e22c1510bfc05f08eac..76506d50b7aca86aade2223e878aa49dde71c8f3 100644
--- a/roles/nfs-client/tasks/mountFileSystem.yml
+++ b/roles/nfs-client/tasks/mountFileSystem.yml
@@ -10,7 +10,7 @@
   when: nfsMounts is defined
 
 - 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 }}"
   notify: "restart rpcbind"
   notify: "restart idmap"
@@ -25,7 +25,7 @@
   when: firstMount | failed
 
 - 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 }}"
   notify: "restart idmap"
   notify: "restart rpcbind"