Skip to content

Commit

Permalink
fix syntax of template
Browse files Browse the repository at this point in the history
  • Loading branch information
ilude committed Jan 10, 2022
1 parent 53db1e2 commit 62ba0d7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/templates/dnsmasq.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,9 @@ domain-needed
dns-loop-detect
port=54
log-facility=-
<% if ENV.fetch('JOYRIDE_LOG_QUERIES', 'false').downcase.eql?('true') %>log-queries<% end %>
<% if ENV.fetch('JOYRIDE_LOG_DEBUG', 'false').downcase.eql?('true') %>log-debug<% end %>
<% if ENV.fetch('JOYRIDE_LOG_QUERIES', 'false').downcase.eql?('true') %>
log-queries
<% end %>
<% if ENV.fetch('JOYRIDE_LOG_DEBUG', 'false').downcase.eql?('true') %>
log-debug
<% end %>

0 comments on commit 62ba0d7

Please sign in to comment.