]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nfs/recipes/default.rb
f94bb97f12a776aeb0f5f94449c4b78f3dba61b5
[chef.git] / cookbooks / nfs / recipes / default.rb
1 #
2 # Cookbook Name:: nfs
3 # Recipe:: default
4 #
5 # Copyright 2010, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 package "nfs-common"
21
22 node[:nfs].each do |mountpoint, details|
23   mount_options = if details[:readonly]
24                     "ro,bg,soft,udp,rsize=8192,wsize=8192,nfsvers=3"
25                   else
26                     "rw,bg,udp,rsize=8192,wsize=8192,nfsvers=3"
27                   end
28
29   directory mountpoint do
30     owner "root"
31     group "root"
32     mode 0o755
33     recursive true
34     not_if { File.exist?(mountpoint) }
35   end
36
37   mount mountpoint do
38     action [:mount, :enable]
39     device "#{details[:host]}:#{details[:path]}"
40     fstype "nfs"
41     options mount_options
42     ignore_failure true
43   end
44 end