forked from dimov-cz/puppet-vsftpd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
74 lines (53 loc) · 2.34 KB
/
ChangeLog
File metadata and controls
74 lines (53 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
2018-04-04 - 1.0.6
* Remove whitespace around comments. Some versions of vsftpd complain.
2017-08-25 - 1.0.5
* Remove whitespaces from vsftpd.conf template.
Some versions of vsftpd will fail on startup if they are present.
eg: vsftpd-3.0.2-10.el7.x86_64 on RHEL 7.2.
2017-08-21 - 1.0.4
* Restore allow_writeable_chroot option that was missing in vsftpd.conf template.
2017-05-29 - 1.0.3
* Adds changes needed to support rspec testing Puppet >= 4.10 and Ruby 2.3.1.
Keeping support for Ruby 1.8.7.
2016-03-12 - 1.0.2
* VSFTPD for Debian Based systems did not work correctly since the default
chroot directory did not exist. Silent error by vsftpd, but starting it
manually and trying to connect returned this error.
* Puppet module will now manage the chroot directory
2016-02-18 - 1.0.1
* Adds a missing parameter to the vsftpd template.
2015-12-15 - 1.0.0
This release contains breaking changes from tag release 0.3.0
A lot of code was re-factored to remove some of parameters in the module which
allowed configuration for parameters in vsftpd which I could not find in the
man pages for latest vsftpd release.
Removed the params.pp since we don't have os specific configuration for vsftpd.
The parameters that vsftpd takes are not dependant on osfamily.
Validation for all parameters has been added.
Spec Tests updated to test validation.
Config split into sections to better the readability...
I'm sure you have opinions about this.
2015-11-23 - 0.3.0
* Adds all configurable options in the vsftpd configuration file into the manifest.
* Rspec tests added.
* Adds ability to modify ensure parameters for vsftpd package.
2014-02-24 - 0.2.1
* Add allow_writeable_chroot directive (#8).
2013-10-14 - 0.2.0
* Add support for arbitrary extra directives (#6).
* Add support for using an empty or a custom template for vsftpd.conf.
* Move package and service names to params class.
2013-09-04 - 0.1.5
* Add support for userlist_deny (Dennis Laumen).
2013-09-03 - 0.1.4
* Add params class with a confdir to support Debian/Ubuntu.
2013-07-22 - 0.1.3
* Add 8 additional vsftpd.conf configuration options (Joshua Hoblitt).
* Clean default parameters from false to undef for when they're not set.
2013-05-20 - 0.1.2
* Update README and use markdown.
* Change to 2-space indent.
2012-04-20 - 0.1.1
* Add hide_file support.
2012-04-03 - 0.1.0
* Clean up module for public release.