You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
558 B
YAML
24 lines
558 B
YAML
---
|
|
- name: Install wireguard-lts package
|
|
pacman:
|
|
name: "{{ item.name }}"
|
|
state: "{{ item.state }}"
|
|
with_items:
|
|
- { name: wireguard-dkms, state: absent }
|
|
- { name: wireguard-lts, state: present }
|
|
become: yes
|
|
tags:
|
|
- wg-install
|
|
when:
|
|
- ansible_kernel is match(".*-lts$")
|
|
- ansible_kernel is version('5.6', '<')
|
|
- name: Install wireguard-dksm package
|
|
pacman:
|
|
name: wireguard-dkms
|
|
become: yes
|
|
tags:
|
|
- wg-install
|
|
when:
|
|
- not ansible_kernel is match(".*-lts$")
|
|
- ansible_kernel is version('5.6', '<')
|