A vsftpd Chef cookbook to install and configure a standard vsftpd installation.
- CentOS
- RHEL
- Debian
- Ubuntu
No other cookbooks required
Attribute | Description | Default |
node['vsftpd']['enabled'] |
Enable and start vsftpd after installation | true |
node['vsftpd']['etcdir'] |
Where to store additional configuration files | /etc/vsftpd |
node['vsftpd']['allowed'] |
Array of local users that are allowd to connect via FTP | [ ] |
node['vsftpd']['chroot'] |
Array of users that will not be chroot'ed | [ ] |
node['vsftpd']['config'] |
Configuration array with key/value pairs. | See Manpage for details |
Installs/configures vsftpd, includes some sub-tasks via include_recipe
.
When using Ubuntu 12.04 or Debian Wheezy you will have issues with
this cookbook and running chroot_local_users=YES
in the configuration.
There are some workarounds to overcome this problem:
The basic gist of these articles:
- revoke write permissions on the users home
- setup a different chroot environment via
passwd_chroot_enable=YES
- install a patched version of the vsftpd 2.x branch and set
allow_writeable_chroot=YES
to ignore this error - use vsftpd 3.x and set
allow_writeable_chroot=YES
to ignore this error
The cookbook comes with some testing facilities allowing you to iterate quickly on cookbook changes.
You can execute the tests with Rake. The Rakefile
provides the following tasks:
$ rake -T
rake chefspec # Run ChefSpec examples
rake foodcritic # Run Foodcritic lint checks
rake knife # Run knife cookbook test
rake rubocop # Run rubocop checks
rake test # Run all tests
If you prefer to let Bundler install all required gems (you should), run the tests this way:
$ # I like to install them in a parent folder so all cookbooks can use it
$ bundle install --path=../vendor/bundle
$ bundle exec rake test
Berkshelf is used to set up the cookbook and its
dependencies (as defined in Berksfile
) prior to testing with Rake and Vagrant.
This cookbook is using test-kitchen to create machines. You can review the boxes by using:
$ bundle exec kitchen list
To run the full kitchen suite included in this cookbook simply execute:
$ bundle exec kitchen test
You can also verify/converge/test any specific machine from the previous list output:
$ bundle exec kitchen verify <instance>
Author:: Sebastian Grewe (sebastian.grewe@gmail.com)
Copyright:: 2013, Sebastian Grewe
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.