feat: Add compatibility with CoreOS
This commit is contained in:
parent
ef7ce58296
commit
02056f9e6f
@ -1,13 +1,20 @@
|
||||
---
|
||||
# handlers file for dnsmasq
|
||||
|
||||
- name: Recharger dnsmasq.service
|
||||
- name: Apply installation
|
||||
ansible.builtin.command:
|
||||
argv:
|
||||
- /usr/bin/rpm-ostree
|
||||
- apply-live
|
||||
become: true
|
||||
|
||||
- name: Reload dnsmasq.service
|
||||
become: true
|
||||
ansible.builtin.systemd:
|
||||
state: reloaded
|
||||
name: dnsmasq.service
|
||||
|
||||
- name: Recharger dnsmasq.service sur les serveurs
|
||||
- name: Reload dnsmasq.service on dns servers
|
||||
become: true
|
||||
ansible.builtin.systemd:
|
||||
state: reloaded
|
||||
|
@ -11,5 +11,8 @@ galaxy_info:
|
||||
- name: Debian
|
||||
versions:
|
||||
- all
|
||||
- name: CoreOS
|
||||
versions:
|
||||
- 41
|
||||
|
||||
dependencies: []
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
# tasks file for security
|
||||
|
||||
- name: Déploiement des enregistrement via ansible
|
||||
- name: Deploy records
|
||||
ansible.builtin.template:
|
||||
owner: dnsmasq
|
||||
group: root
|
||||
@ -14,4 +14,4 @@
|
||||
loop: "{{ dnsmasq_hosts }}"
|
||||
loop_control:
|
||||
loop_var: dnsserver
|
||||
notify: Recharger dnsmasq.service sur les serveurs
|
||||
notify: Reload dnsmasq.service on dns servers
|
||||
|
@ -1,13 +1,22 @@
|
||||
---
|
||||
# tasks file for security
|
||||
|
||||
- name: Supprimer l'ancien fichier de configuration
|
||||
- name: Create records directory
|
||||
ansible.builtin.file:
|
||||
path: /srv/dnsmasq
|
||||
state: directory
|
||||
owner: dnsmasq
|
||||
group: root
|
||||
mode: u=rwX,g=rX,o=rX
|
||||
become: true
|
||||
|
||||
- name: Remove old configuration
|
||||
ansible.builtin.file:
|
||||
path: /etc/dnsmasq.d/cache.conf
|
||||
state: absent
|
||||
become: true
|
||||
|
||||
- name: Configurer dnsmasq
|
||||
- name: Deploy configuration
|
||||
ansible.builtin.template:
|
||||
src: dnsmasq.conf.j2
|
||||
dest: /etc/dnsmasq.d/dns.conf
|
||||
@ -15,9 +24,9 @@
|
||||
group: root
|
||||
mode: u=rw,g=r,o=r
|
||||
become: true
|
||||
notify: Recharger dnsmasq.service
|
||||
notify: Reload dnsmasq.service
|
||||
|
||||
- name: Déployer la configuration de l'instance
|
||||
- name: Deploy local host configuration
|
||||
ansible.builtin.template:
|
||||
src: host.conf.j2
|
||||
dest: /srv/dnsmasq/{{ inventory_hostname }}.conf
|
||||
@ -25,9 +34,9 @@
|
||||
group: root
|
||||
mode: u=rw,g=r,o=r
|
||||
become: true
|
||||
notify: Recharger dnsmasq.service
|
||||
notify: Reload dnsmasq.service
|
||||
|
||||
- name: Déployer les configurations specifiques
|
||||
- name: Deploy specific configuration
|
||||
ansible.builtin.template:
|
||||
src: specific.conf.j2
|
||||
dest: "{{ filename }}"
|
||||
@ -36,7 +45,7 @@
|
||||
mode: u=rw,g=r,o=r
|
||||
when: dnsmasq_specifics | length > 0
|
||||
become: true
|
||||
notify: Recharger dnsmasq.service
|
||||
notify: Reload dnsmasq.service
|
||||
loop: "{{ dnsmasq_specifics }}"
|
||||
loop_control:
|
||||
label: "{{ filename }}"
|
||||
|
18
tasks/installation-atomic_container.yml
Normal file
18
tasks/installation-atomic_container.yml
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
# tasks file for dnsmasq
|
||||
|
||||
- name: Install stubby
|
||||
ansible.builtin.command:
|
||||
argv:
|
||||
- /usr/bin/rpm-ostree
|
||||
- install
|
||||
- --allow-inactive
|
||||
- --assumeyes
|
||||
- --idempotent
|
||||
- dnsmasq
|
||||
creates: /sysroot/ostree/repo/refs/heads/rpmostree/pkg/dnsmasq
|
||||
become: true
|
||||
notify: Apply installation
|
||||
|
||||
- name: Flush handlers
|
||||
meta: flush_handlers
|
@ -1,10 +1,10 @@
|
||||
---
|
||||
# tasks file for dnsmasq
|
||||
|
||||
- name: Importer les tâches d'installation
|
||||
tags: installation
|
||||
ansible.builtin.import_tasks: installation.yml
|
||||
- name: Include installation tasks
|
||||
ansible.builtin.include_tasks:
|
||||
file: installation-{{ ansible_facts['pkg_mgr'] }}.yml
|
||||
|
||||
- name: Importer les tâches de configuration
|
||||
tags: configuration
|
||||
ansible.builtin.import_tasks: configuration.yml
|
||||
- name: Import configuration tasks
|
||||
ansible.builtin.import_tasks:
|
||||
file: configuration.yml
|
||||
|
Loading…
x
Reference in New Issue
Block a user