feat: Add compatibility with CoreOS
This commit is contained in:
parent
d1e61dd46e
commit
4105d5f2ec
@ -1,20 +1,22 @@
|
|||||||
---
|
---
|
||||||
# defaults file for dnsmasq
|
# defaults file for dnsmasq
|
||||||
|
|
||||||
stubby_listen_addresses:
|
stubby_listen_addresses: []
|
||||||
- 127.0.0.1
|
# Example:
|
||||||
- 0::1
|
# - 127.0.0.1@53000
|
||||||
|
# - 0::1@53000
|
||||||
|
|
||||||
stubby_upstream_recursive_servers:
|
stubby_upstream_recursive_servers: []
|
||||||
- address_data: 2a0f:fc80::0
|
# Example:
|
||||||
tls_port: 853
|
# - address_data: 2a0f:fc80::9
|
||||||
tls_auth_name: "dns0.eu"
|
# tls_port: 853
|
||||||
- address_data: 2a0f:fc81::0
|
# tls_auth_name: "dns0.eu"
|
||||||
tls_port: 853
|
# - address_data: 2a0f:fc81::9
|
||||||
tls_auth_name: "dns0.eu"
|
# tls_port: 853
|
||||||
- address_data: 193.110.81.0
|
# tls_auth_name: "dns0.eu"
|
||||||
tls_port: 853
|
# - address_data: 193.110.81.9
|
||||||
tls_auth_name: "dns0.eu"
|
# tls_port: 853
|
||||||
- address_data: 185.253.5.0
|
# tls_auth_name: "dns0.eu"
|
||||||
tls_port: 853
|
# - address_data: 185.253.5.9
|
||||||
tls_auth_name: "dns0.eu"
|
# tls_port: 853
|
||||||
|
# tls_auth_name: "dns0.eu"
|
||||||
|
@ -1,7 +1,14 @@
|
|||||||
---
|
---
|
||||||
# handlers file for stubby
|
# handlers file for stubby
|
||||||
|
|
||||||
- name: Redémarrer stubby.service
|
- name: Apply installation
|
||||||
|
ansible.builtin.command:
|
||||||
|
argv:
|
||||||
|
- /usr/bin/rpm-ostree
|
||||||
|
- apply-live
|
||||||
|
become: true
|
||||||
|
|
||||||
|
- name: Restart stubby.service
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
state: restarted
|
state: restarted
|
||||||
name: stubby.service
|
name: stubby.service
|
||||||
|
@ -11,5 +11,8 @@ galaxy_info:
|
|||||||
- name: Debian
|
- name: Debian
|
||||||
versions:
|
versions:
|
||||||
- all
|
- all
|
||||||
|
- name: CoreOS
|
||||||
|
versions:
|
||||||
|
- 41
|
||||||
|
|
||||||
dependencies: []
|
dependencies: []
|
||||||
|
9
tasks/configuration.yml
Normal file
9
tasks/configuration.yml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
# tasks file for stubby
|
||||||
|
|
||||||
|
- name: Configurer stubby
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: stubby.yml.j2
|
||||||
|
dest: /etc/stubby/stubby.yml
|
||||||
|
become: true
|
||||||
|
notify: Restart stubby.service
|
7
tasks/installation-apt.yml
Normal file
7
tasks/installation-apt.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
# tasks file for stubby
|
||||||
|
|
||||||
|
- name: Install stubby
|
||||||
|
ansible.builtin.apt:
|
||||||
|
name: stubby
|
||||||
|
become: true
|
18
tasks/installation-atomic_container.yml
Normal file
18
tasks/installation-atomic_container.yml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
# tasks file for borgmatic
|
||||||
|
|
||||||
|
- name: Install stubby
|
||||||
|
ansible.builtin.command:
|
||||||
|
argv:
|
||||||
|
- /usr/bin/rpm-ostree
|
||||||
|
- install
|
||||||
|
- --allow-inactive
|
||||||
|
- --assumeyes
|
||||||
|
- --idempotent
|
||||||
|
- stubby
|
||||||
|
creates: /sysroot/ostree/repo/refs/heads/rpmostree/pkg/stubby
|
||||||
|
become: true
|
||||||
|
notify: Apply installation
|
||||||
|
|
||||||
|
- name: Flush handlers
|
||||||
|
meta: flush_handlers
|
@ -1,14 +1,10 @@
|
|||||||
---
|
---
|
||||||
# tasks file for stubby
|
# tasks file for stubby
|
||||||
|
|
||||||
- name: Installer stubby
|
- name: Include installation tasks
|
||||||
ansible.builtin.apt:
|
ansible.builtin.include_tasks:
|
||||||
name: stubby
|
file: installation-{{ ansible_facts['pkg_mgr'] }}.yml
|
||||||
become: true
|
|
||||||
|
|
||||||
- name: Configurer stubby
|
- name: Import configuration tasks
|
||||||
ansible.builtin.template:
|
ansible.builtin.import_tasks:
|
||||||
src: stubby.yml.j2
|
file: configuration.yml
|
||||||
dest: /etc/stubby/stubby.yml
|
|
||||||
become: true
|
|
||||||
notify: Redémarrer stubby.service
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user