X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/261e7e9cd1a9882faa4ed7087b5902ebafe25988..5f2de3518b17b1fb18294649f6c238e289ca7835:/cookbooks/nfs/recipes/server.rb?ds=inline diff --git a/cookbooks/nfs/recipes/server.rb b/cookbooks/nfs/recipes/server.rb index 508d14eca..f75e44e88 100644 --- a/cookbooks/nfs/recipes/server.rb +++ b/cookbooks/nfs/recipes/server.rb @@ -19,31 +19,32 @@ package "nfs-kernel-server" -service "portmap" do - action [ :enable, :start ] +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 = {} search(:node, "*:*") do |client| - if client[:nfs] - client[:nfs].each_value do |mount| - if mount[:host] == node[:hostname] - client.ipaddresses do |address| - exports[mount[:path]] ||= {} + next unless client[:nfs] - if mount[:readonly] - exports[mount[:path]][address] = "ro" - else - exports[mount[:path]][address] = "rw" - end - end + client[:nfs].each_value do |mount| + next unless mount[:host] == node[:hostname] + + client.ipaddresses do |address| + exports[mount[:path]] ||= {} + + if mount[:readonly] + exports[mount[:path]][address] = "ro" + else + exports[mount[:path]][address] = "rw" end end end