puppet-ironic/templates/dnsmasq_tftp_server.erb
Takashi Kajinami f0f6163f43 Allow customizing log output of dnsmasq services
This change introduces the new dnsmasq_log_facility parameter so that
users can customize log output from dsnmasq processes.

Change-Id: Ied9b42432cf12f0ea84b27a93389805589db3f30
2022-03-10 01:18:35 +00:00

12 lines
284 B
Plaintext

# Configuration for a dnsmasq based TFTP service
port=0
bind-interfaces
enable-tftp
tftp-root=<%= @tftp_root_real %>
<% if @tftp_bind_host -%>
listen-address=<%= @tftp_bind_host %>
<% end -%>
<% if ! @dnsmasq_log_facility.nil? -%>
log-facility=<%= @dnsmasq_log_facility %>
<% end -%>