diff --git a/roles/nfs-client/tasks/mountFileSystem.yml b/roles/nfs-client/tasks/mountFileSystem.yml index a32c1e4e98f0c1a7b84894debc9fa25022808b1d..883b49f1c78942ca3b9c27e693a3135abdbbcf6f 100644 --- a/roles/nfs-client/tasks/mountFileSystem.yml +++ b/roles/nfs-client/tasks/mountFileSystem.yml @@ -6,12 +6,6 @@ delegate_to: "{{ nfs_server }}" when: nfsServer is not defined -- name: "Debug ansible_facts dictinary" - debug: msg="debug nfsHomeServer {{ nfsHomeServer['ansible_facts']['ansible_eth0']['ipv4']['address'] }}" - -- name: "Debug ansible_facts dictinary 2" - debug: msg="debug nfsServer {{ nfsServer['ansible_facts']['ansible_eth0']['ipv4']['address'] }}" - - name: "Mounting NFS mounts" mount: "name={{ item.name }} src={{ nfsServer['ansible_facts']['ansible_'+item.interface]['ipv4']['address'] }}:{{ item.src }} fstype={{ item.fstype }} opts={{ item.opts }} state=mounted" with_items: exportList