1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Merge pull request #1745 from jvonau/patch-1

Update computed_services.yml [dnsmasq should/generally run, by default]
This commit is contained in:
A Holt 2019-06-19 13:29:43 -04:00 committed by GitHub
commit 0d2f7b93d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -45,8 +45,8 @@
set_fact:
named_enabled: False
dhcpd_enabled: False
dnsmasq_enabled: False
dhcp_service2: "dnsmasq disabled"
dnsmasq_enabled: True
dhcp_service2: "dnsmasq"
when: dnsmasq_install and iiab_network_mode == "Appliance"
- name: Add 'network' variable values (from computed_services.yml) to {{ iiab_ini_file }}

View file

@ -61,5 +61,5 @@ static domain_name_servers=127.0.0.1
interface {{ iiab_wan_iface }}
static ip_address={{ wan_ip }}/24
static routers={{ wan_gateway }}
domain_name_servers= {{ wan_nameserver }}
static domain_name_servers={{ wan_nameserver }}
{% endif %}