f0f6163f43
This change introduces the new dnsmasq_log_facility parameter so that users can customize log output from dsnmasq processes. Change-Id: Ied9b42432cf12f0ea84b27a93389805589db3f30
12 lines
284 B
Plaintext
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 -%>
|