mirror of
https://github.com/itdoginfo/ansible-openwrt-hirkn.git
synced 2025-12-14 02:54:29 +05:00
Add confdir for snapshot
This commit is contained in:
@@ -6,6 +6,10 @@
|
||||
shell: opkg list-installed | grep dnsmasq-full | awk '{print $3}'
|
||||
register: dnsmasqfull_version
|
||||
|
||||
- name: Check confdir option
|
||||
shell: uci get dhcp.@dnsmasq[0].confdir
|
||||
register: dnsmasq_confdir
|
||||
|
||||
- name: debug
|
||||
debug:
|
||||
var: ansible_distribution_major_version
|
||||
@@ -63,6 +67,14 @@
|
||||
when: ansible_distribution_major_version >= "23" and list_domains and not dnsmasqfull_version.stdout
|
||||
ignore_errors: true
|
||||
|
||||
- name: set confdir for dnsmasq
|
||||
uci:
|
||||
command: set
|
||||
key: dhcp.@dnsmasq[0]
|
||||
value:
|
||||
confdir: "/tmp/dnsmasq.d"
|
||||
when: dnsmasq_confdir.stdout != "/tmp/dnsmasq.d"
|
||||
|
||||
# Getdomains script configure
|
||||
|
||||
- name: getdomains script copy
|
||||
|
||||
Reference in New Issue
Block a user