From fc177961a752e950e1246624e81d642ae78c9fcf Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Thu, 15 Jan 2015 00:28:41 +0000 Subject: [PATCH] Fedora 21 also needs rpcbind to be manually started --- roles/nfs/client/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/nfs/client/tasks/main.yml b/roles/nfs/client/tasks/main.yml index 2c7fce782a..6ada3da393 100644 --- a/roles/nfs/client/tasks/main.yml +++ b/roles/nfs/client/tasks/main.yml @@ -28,6 +28,7 @@ - name: enable nfs-related services and run them (fedora21) service: name={{ item }} enabled=true state=started with_items: + - rpcbind - rpc-statd when: ansible_distribution == 'Fedora' and ansible_distribution_major_version == '21'