[EVO] Manager wiregard as kernel module

This commit is contained in:
pulsar89.5 2023-10-10 11:19:42 +02:00 committed by pulsar89.5
parent f7aa5380e0
commit a1fbbd57e1
5 changed files with 51 additions and 83 deletions

View File

@ -4,9 +4,9 @@
- name: Activer les services - name: Activer les services
ansible.builtin.systemd: ansible.builtin.systemd:
enabled: true enabled: true
name: wg-quick@wg{{ item }}.service name: wg-quick@wg{{ index }}.service
become: true become: true
loop: "{{ deploy.results | selectattr('changed', 'equalto', true) | map(attribute='index') }}" loop: "{{ wireguard_interfaces }}"
loop_control: loop_control:
index_var: index index_var: index
label: wg{{ index }} label: wg{{ index }}
@ -14,10 +14,10 @@
- name: Redémarrer les services - name: Redémarrer les services
ansible.builtin.systemd: ansible.builtin.systemd:
state: restarted state: restarted
name: wg-quick@wg{{ item }}.service name: wg-quick@wg{{ index }}.service
when: wireguard_restart_services when: wireguard_restart_services
become: true become: true
loop: "{{ deploy.results | selectattr('changed', 'equalto', true) | map(attribute='index') }}" loop: "{{ wireguard_interfaces }}"
loop_control: loop_control:
index_var: index index_var: index
label: wg{{ index }} label: wg{{ index }}

View File

@ -1,42 +0,0 @@
---
# tasks file for wireguard
- name: Déployer la configuration des interfaces
ansible.builtin.template:
src: wgN.j2
dest: /etc/wireguard/{{ interface }}.conf
owner: root
group: root
mode: u=rw,g=r,o=r
loop: "{{ wireguard_interfaces }}"
loop_control:
index_var: index
label: "{{ interface }}"
vars:
interface: wg{{ index }}
become: true
register: deploy
notify:
- Activer les services
- Redémarrer les services
#- name: Activer les services
# ansible.builtin.systemd:
# state: restarted
# enabled: true
# name: wg-quick@wg{{ item }}.service
# become: true
# loop: "{{ deploy.results | selectattr('changed', 'equalto', true) | map(attribute='index') }}"
# loop_control:
# index_var: index
# label: wg{{ index }}
#
#- name: Redémarrer les services
# ansible.builtin.systemd:
# state: restarted
# name: wg-quick@wg{{ item }}.service
# become: true
# loop: "{{ deploy.results | selectattr('changed', 'equalto', true) | map(attribute='index') }}"
# loop_control:
# index_var: index
# label: wg{{ index }}

View File

@ -1,33 +0,0 @@
---
# tasks file for wireguard
- name: Installer le paquet
ansible.builtin.apt:
update_cache: true
name: wireguard
when: wireguard_module_host | length == 0
become: true
register: wireguard_install
- name: Installer le module du noyau sur l'hôte
ansible.builtin.apt:
update_cache: true
name: wireguard-dkms
when: wireguard_module_host | length > 0
delegate_to: "{{ wireguard_module_host }}"
become: true
- name: Installer l'outil de configuration
ansible.builtin.apt:
update_cache: true
name: wireguard-tools
when: wireguard_module_host | length > 0
become: true
#- name: Créer le dossier contenant la configuration
# ansible.builtin.file:
# state: directory
# mode: u=rwx,g=,o=
# path: "{{ wireguard_conf_path }}"
# delegate_to: "{{ wireguard_server_host }}"
# become: true

View File

@ -1,8 +1,49 @@
--- ---
# tasks file for wireguard # tasks file for wireguard
- name: Importer les tâches d'installation - name: Installer le paquet
ansible.builtin.import_tasks: installation.yml ansible.builtin.apt:
update_cache: true
name: wireguard
when: wireguard_module_host | length == 0
become: true
- name: Importer les tâches de configuration - name: Tâches de gestion du module du noyau
ansible.builtin.import_tasks: configuration.yml block:
- name: Charger le module du noyau
community.general.modprobe:
name: wireguard
state: present
rescue:
- name: Installer le module du noyau sur l'hôte
ansible.builtin.apt:
update_cache: true
name: wireguard-dkms
when: wireguard_module_host | length > 0
become: true
delegate_to: "{{ wireguard_module_host }}"
- name: Installer l'outil de configuration
ansible.builtin.apt:
update_cache: true
name: wireguard-tools
when: wireguard_module_host | length > 0
become: true
- name: Déployer la configuration des interfaces
ansible.builtin.template:
src: wgN.j2
dest: /etc/wireguard/{{ interface }}.conf
owner: root
group: root
mode: u=rw,g=r,o=r
loop: "{{ wireguard_interfaces }}"
loop_control:
index_var: index
label: "{{ interface }}"
vars:
interface: wg{{ index }}
become: true
notify:
- Activer les services
- Redémarrer les services

View File

@ -11,7 +11,9 @@ Address = {{ item.addresses | join(', ') }}
[Peer] [Peer]
# {{ peer.name }} # {{ peer.name }}
PublicKey = {{ peer.pubkey }} PublicKey = {{ peer.pubkey }}
{% if peer.endpoint is defined %}
Endpoint = {{ peer.endpoint }} Endpoint = {{ peer.endpoint }}
{% endif %}
AllowedIPs = {{ peer.allowed_ips | join(', ') }} AllowedIPs = {{ peer.allowed_ips | join(', ') }}
{% if peer.persistent_keepalive is defined %} {% if peer.persistent_keepalive is defined %}
PersistentKeepalive = {{ peer.persistent_keepalive }} PersistentKeepalive = {{ peer.persistent_keepalive }}