From 04a8cc9b22ba98281f21b0c41ddea8ce19bcf8b7 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Mon, 30 May 2016 09:59:33 +0100 Subject: [PATCH] Update NFS server recipe for Ubuntu 16.04 --- cookbooks/nfs/recipes/server.rb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/cookbooks/nfs/recipes/server.rb b/cookbooks/nfs/recipes/server.rb index 33e5a315e..26159545a 100644 --- a/cookbooks/nfs/recipes/server.rb +++ b/cookbooks/nfs/recipes/server.rb @@ -20,15 +20,14 @@ package "nfs-kernel-server" service "rpcbind" do - provider Chef::Provider::Service::Upstart action [:enable, :start] supports :status => true, :restart => true, :reload => true end -# service "nfs-kernel-server" do -# action [ :enable, :start ] -# supports :status => true, :restart => true, :reload => true -# end +service "nfs-kernel-server" do + action [:enable, :start] + supports :status => true, :restart => true, :reload => true +end exports = {} -- 2.43.2