]> gitweb.fluxo.info Git - puppet-tftp.git/commitdiff
* remove old references to inetd_conf
authorcrayfishx <craig@craigdunn.org>
Tue, 10 Jul 2012 23:48:50 +0000 (16:48 -0700)
committercrayfishx <craig@craigdunn.org>
Tue, 10 Jul 2012 23:48:50 +0000 (16:48 -0700)
manifests/init.pp
manifests/params.pp

index 76ed7c9a4af0e5b999d9c7e3ada375db04f0fb7f..973049cc3f88c738fe1ff71574996a3c207af347 100644 (file)
@@ -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
index e5de774b996f60f0f01393808597f60e89d925e7..288f0b0715e6559a63210d4ea938a5a66b8000bf 100644 (file)
@@ -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 {