diff options
author | crayfishx <craig@craigdunn.org> | 2012-07-16 11:54:20 -0700 |
---|---|---|
committer | crayfishx <craig@craigdunn.org> | 2012-07-16 11:54:20 -0700 |
commit | c0ea8207bc2bdb4d62c81ac6f547e560549f2fd3 (patch) | |
tree | 0b23992967d8d66da12b0441f7e9ae0c1cf8fb0b /manifests/init.pp | |
parent | 0f70b0bfe7b5f8475ffade5f9e14c0632e42bd47 (diff) | |
download | puppet-tftp-c0ea8207bc2bdb4d62c81ac6f547e560549f2fd3.tar.gz puppet-tftp-c0ea8207bc2bdb4d62c81ac6f547e560549f2fd3.tar.bz2 |
Make xinetd the default method for installing tftp
* Switched the inetd parameter to default to true
* Moved the value into params.pp
* Updated tests
* Updated README
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 973049c..8becd7d 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -29,7 +29,7 @@ class tftp ( $address = $tftp::params::address, $port = $tftp::params::port, $options = $tftp::params::options, - $inetd = false, + $inetd = $tftp::params::inetd, $package = $tftp::params::package, $binary = $tftp::params::binary, $defaults = $tftp::params::defaults |