aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNan Liu <nan@puppetlabs.com>2012-05-14 11:10:55 -0700
committerNan Liu <nan@puppetlabs.com>2012-05-14 11:18:06 -0700
commit50fcf03f10e27c10efeac2eb29615078e7b0881f (patch)
tree61b2392303a2f4094d4712864a552d5f3c8f66ab /README.md
parentedd39b0301a7db0af5098baf7a0b228036038493 (diff)
downloadpuppet-tftp-50fcf03f10e27c10efeac2eb29615078e7b0881f.tar.gz
puppet-tftp-50fcf03f10e27c10efeac2eb29615078e7b0881f.tar.bz2
(#14465) Add inetd option tftpd.
This adds the ability to use inetd for tftpd service. This merges the functionality provided in the puppet-tftp module to puppetlabs-tftp.
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4e13fd7..1b3688c 100644
--- a/README.md
+++ b/README.md
@@ -15,13 +15,17 @@ Parameters:
* address: bind address, default 0.0.0.0.
* port: bind port, default 69.
* options: service option, default --secure.
+* inetd: run service via inetd, default false. (Warning: this option when enabled to true is not compatible with custom service options).
+* inetd_conf: inetd.conf file path, default /etc/inetd.conf.
+
+Enabling inetd requires [puppetlabs-inetd](https://github.com/puppetlabs/puppetlabs-inetd) module.
Example:
class tftp {
directory => '/opt/tftp',
address => $::ipaddress,
- options => '--secure --ipv6 --timeout 60',
+ options => '--ipv6 --timeout 60',
}
### tftp::file