diff options
author | crayfishx <craig@craigdunn.org> | 2012-07-10 16:48:50 -0700 |
---|---|---|
committer | crayfishx <craig@craigdunn.org> | 2012-07-10 16:48:50 -0700 |
commit | 0e60a3f8006c406c7db4c23f19a4d24a57603ef3 (patch) | |
tree | bbc727db2bec14329a2590d7c7eda2496ead5e71 | |
parent | 6ecee7dd83b51f6a25f98ff1600410a1bb531410 (diff) | |
download | puppet-tftp-0e60a3f8006c406c7db4c23f19a4d24a57603ef3.tar.gz puppet-tftp-0e60a3f8006c406c7db4c23f19a4d24a57603ef3.tar.bz2 |
* remove old references to inetd_conf
-rw-r--r-- | manifests/init.pp | 6 | ||||
-rw-r--r-- | manifests/params.pp | 1 |
2 files changed, 2 insertions, 5 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 76ed7c9..973049c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -7,14 +7,13 @@ # [*address*]: tftp service bind address (default 0.0.0.0). # [*port*]: tftp service bind port (default 69). # [*options*]: tftp service bind port (default 69). -# [*inetd*]: tftp service bind port (default 69). -# [*inetd_conf*]: tftp service bind port (default 69). +# [*inetd*]: Run as an xinetd service instead of standalone daemon (false) # # Actions: # # Requires: # -# puppetlabs-inetd when inetd = true. +# Class['xinetd'] (if inetd set to true) # # Usage: # @@ -31,7 +30,6 @@ class tftp ( $port = $tftp::params::port, $options = $tftp::params::options, $inetd = false, - $inetd_conf = $tftp::params::inetd_conf, $package = $tftp::params::package, $binary = $tftp::params::binary, $defaults = $tftp::params::defaults diff --git a/manifests/params.pp b/manifests/params.pp index e5de774..288f0b0 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -5,7 +5,6 @@ class tftp::params { $address = '0.0.0.0' $port = '69' $options = '--secure' - $inetd_conf = '/etc/inetd.conf' $binary = '/usr/sbin/in.tftpd' case $::osfamily { |