Age | Commit message (Collapse) | Author |
|
This update address file owner to nobody by default for RHEL family.
|
|
Until we decide how to simulate rspec-puppet calling this class from a different module this test has been changed to just test deploying the file.
|
|
* as originally submitted in https://github.com/puppetlabs/puppetlabs-tftp/pull/10...
* Only use one it block per test to improve performance
|
|
* Removed rspec-tests for inetd
* Modified existing tests to work with new evaluation of :osfamily
* Added tests for Redhat/CentOS boxes
* Added rspec-tests for xinetd service
|
|
This change provides the convenience of using caller_module_name for
tftp files, so the following manifests can be abbreviated from:
tftp::file { 'foo':
source => 'puppet:///modules/example/foo',
}
tftp::file { 'baz/bar':
source => 'puppet:///modules/example/baz/bar',
}
to:
tftp::file { [ 'foo', 'baz/bar' ]:
}
This simplifies declaring large number of tftp files.
|
|
One test verifies the defaults for recurse, purge, replace, recurselimit when they are not provided. The other test ensure that setting them in the tftp:file definition correlates to the params getting set on the file.
|
|
Update rspec tests to assert the value of recurse in various cases.
|
|
* Update documentation.
* Fix puppet-lint 80 char issues.
* Add spec tests.
* Add modulefile, changelog, rakefile, and license.
|