mirror of
https://gitea.0xace.cc/ansible-galaxy/wireguard-ui.git
synced 2025-04-06 01:01:56 +00:00
split wireguard install for el8 and el9
This commit is contained in:
parent
fb0ac44188
commit
b7d9f987d0
@ -1,16 +1,28 @@
|
||||
- name: Install repos
|
||||
- name: Install wireguard for RHEL 8
|
||||
when: distribution_major_version == '8'
|
||||
block:
|
||||
- name: Install repos
|
||||
dnf:
|
||||
name:
|
||||
- elrepo-release
|
||||
- epel-release
|
||||
state: present
|
||||
|
||||
- name: Install kmod wireguard
|
||||
- name: Install kmod wireguard
|
||||
dnf:
|
||||
name:
|
||||
- kmod-wireguard
|
||||
- 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
|
||||
systemd:
|
||||
name: wg-quick@{{ wireguard_ui_env['WGUI_CONFIG_FILE_PATH'] | basename | split('.') | first }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user