From aabe7ceea639b0015bdcdac49746e034764a13e5 Mon Sep 17 00:00:00 2001 From: Chris Hines <chris.hines@monash.edu> Date: Wed, 16 Sep 2015 23:39:10 +0000 Subject: [PATCH] shouldn't have removed the task of creating export points --- roles/nfs-server/tasks/startServer.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/nfs-server/tasks/startServer.yml b/roles/nfs-server/tasks/startServer.yml index c2f74a2f..f326a572 100644 --- a/roles/nfs-server/tasks/startServer.yml +++ b/roles/nfs-server/tasks/startServer.yml @@ -1,4 +1,9 @@ --- +- name: "Create exports if necessary" + file: dest={{ item.src }} state=directory mode=755 owner=root group=root + sudo: true + with_items: exportList + - name: "Starting rpcbind" service: "name=rpcbind state=started" sudo: true -- GitLab