]> git.openstreetmap.org Git - chef.git/blob - cookbooks/ftp/recipes/default.rb
58fc9c80b7d0f7114b3614489b417f5bbb281e26
[chef.git] / cookbooks / ftp / recipes / default.rb
1 #
2 # Cookbook Name:: FTP
3 # Recipe:: default
4 #
5 # Copyright 2018, 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 #     https://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 "vsftpd"
21
22 template "/etc/vsftpd.conf" do
23   source "vsftpd.conf.erb"
24   owner "root"
25   group "root"
26   mode 0o644
27 end
28
29 service "vsftpd" do
30   action [:enable] # Do not start the service as config may be broken from failed chef run
31   supports :status => true, :restart => true, :reload => true
32   subscribes :restart, "template[/etc/vsftpd.conf]"
33 end
34
35 firewall_rule "accept-ftp-tcp" do
36   action :helper
37   source "net"
38   dest "fw"
39   proto "tcp"
40   dest_ports "ftp"
41   source_ports "-"
42 end