split wireguard install for el8 and el9

This commit is contained in:
ace 2022-07-13 18:09:24 +03:00
parent fb0ac44188
commit b7d9f987d0
No known key found for this signature in database
GPG Key ID: 2E47CC17BA7F8CF0

View File

@ -1,3 +1,6 @@
- name: Install wireguard for RHEL 8
when: distribution_major_version == '8'
block:
- name: Install repos - name: Install repos
dnf: dnf:
name: name:
@ -11,6 +14,15 @@
- kmod-wireguard - kmod-wireguard
- wireguard-tools - wireguard-tools
- name: Install wireguard for RHEL 9
when: distribution_major_version == '9'
block:
- name: Install repos
dnf:
name:
- wireguard-tools
state: present
- name: Enable wg-quick systemd unit - name: Enable wg-quick systemd unit
systemd: systemd:
name: wg-quick@{{ wireguard_ui_env['WGUI_CONFIG_FILE_PATH'] | basename | split('.') | first }} name: wg-quick@{{ wireguard_ui_env['WGUI_CONFIG_FILE_PATH'] | basename | split('.') | first }}