ansible-role-tftpd-hpa/README.md

61 lines
936 B
Markdown
Raw Normal View History

2016-01-20 23:34:45 +01:00
Role Name
=========
An [Ansible] role to install/configure [tftpd-hpa]
2016-01-20 23:34:45 +01:00
Requirements
------------
None
2016-01-20 23:34:45 +01:00
Role Variables
--------------
```
---
# defaults file for ansible-tftpd-hpa
# Defines tftp root directory
tftp_directory: '/var/lib/tftpboot'
# Defines tftp options for daemon...(-c allow new files to be created)
tftp_options: '--secure -c'
tftp_netboot_file: 'netboot.tar.gz'
tftp_netboot_url: 'http://archive.ubuntu.com/ubuntu/dists/trusty-updates/main/installer-amd64/current/images/netboot'
```
2016-01-20 23:34:45 +01:00
Dependencies
------------
None
2016-01-20 23:34:45 +01:00
Example Playbook
----------------
```
---
- hosts: tftp_servers
become: true
vars:
roles:
- role: ansible-tftpd-hpa
tasks:
```
2016-01-20 23:34:45 +01:00
License
-------
BSD
Author Information
------------------
Larry Smith Jr.
- @mrlesmithjr
- http://everythingshouldbevirtual.com
- mrlesmithjr [at] gmail.com
[Ansible]: <https://www.ansible.com>
[tftpd-hpa]: <https://help.ubuntu.com/community/TFTP>