Added templates
Signed-off-by: Larry Smith Jr <mrlesmithjr@gmail.com>
This commit is contained in:
parent
f7eb8358fe
commit
2181d6f30a
2 changed files with 45 additions and 0 deletions
6
templates/etc/default/tftpd-hpa.j2
Normal file
6
templates/etc/default/tftpd-hpa.j2
Normal file
|
@ -0,0 +1,6 @@
|
|||
# /etc/default/tftpd-hpa
|
||||
|
||||
TFTP_USERNAME="tftp"
|
||||
TFTP_DIRECTORY="{{ tftp_directory }}"
|
||||
TFTP_ADDRESS="[::]:69"
|
||||
TFTP_OPTIONS="{{ tftp_options }}"
|
39
templates/etc/inetd.conf.j2
Normal file
39
templates/etc/inetd.conf.j2
Normal file
|
@ -0,0 +1,39 @@
|
|||
# /etc/inetd.conf: see inetd(8) for further informations.
|
||||
#
|
||||
# Internet superserver configuration database
|
||||
#
|
||||
#
|
||||
# Lines starting with "#:LABEL:" or "#<off>#" should not
|
||||
# be changed unless you know what you are doing!
|
||||
#
|
||||
# If you want to disable an entry so it isn't touched during
|
||||
# package updates just comment it out with a single '#' character.
|
||||
#
|
||||
# Packages should modify this file by using update-inetd(8)
|
||||
#
|
||||
# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
|
||||
#
|
||||
#:INTERNAL: Internal services
|
||||
#discard stream tcp nowait root internal
|
||||
#discard dgram udp wait root internal
|
||||
#daytime stream tcp nowait root internal
|
||||
#time stream tcp nowait root internal
|
||||
|
||||
#:STANDARD: These are standard services.
|
||||
|
||||
#:BSD: Shell, login, exec and talk are BSD protocols.
|
||||
|
||||
#:MAIL: Mail, news and uucp services.
|
||||
|
||||
#:INFO: Info services
|
||||
|
||||
#:BOOT: TFTP service is provided primarily for booting. Most sites
|
||||
# run this only on machines acting as "boot servers."
|
||||
|
||||
#:RPC: RPC based services
|
||||
|
||||
#:HAM-RADIO: amateur-radio services
|
||||
|
||||
#:OTHER: Other services
|
||||
|
||||
tftp dgram udp wait root /usr/sbin/in.tftpd /usr/sbin/in.tftpd -s {{ tftp_directory }}
|
Loading…
Reference in a new issue