2021-01-12 09:44:14 +01:00
|
|
|
- name: install wireguard for Arch
|
2023-04-18 18:24:55 +02:00
|
|
|
pacman:
|
|
|
|
name: wireguard-tools
|
|
|
|
state: present
|
2022-03-17 14:00:48 +01:00
|
|
|
when: ansible_os_family == "Archlinux"
|
2021-01-12 09:44:14 +01:00
|
|
|
|
|
|
|
- name: install wireguard for Ubuntu
|
2023-04-18 18:24:55 +02:00
|
|
|
apt:
|
|
|
|
name: wireguard
|
|
|
|
state: present
|
2021-01-12 09:44:14 +01:00
|
|
|
when: ansible_os_family == "Debian"
|
2020-12-24 14:27:31 +01:00
|
|
|
|
2023-04-18 18:24:55 +02:00
|
|
|
- name: create wireguard-ip.conf
|
|
|
|
copy:
|
|
|
|
src: "wireguard-ip.conf"
|
|
|
|
dest: /etc/sysctl.d/wireguard-ip.conf
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
notify: reload sysctl configuration
|
|
|
|
|
2024-01-11 11:24:40 +01:00
|
|
|
- name: create /etc/wireguard/wg0.cymais.conf
|
2020-12-25 11:55:46 +01:00
|
|
|
copy:
|
|
|
|
src: "{{ inventory_dir }}/files/{{ inventory_hostname }}/etc/wireguard/wg0.conf"
|
2024-01-11 11:24:40 +01:00
|
|
|
dest: /etc/wireguard/wg0.cymais.conf
|
2020-12-25 11:55:46 +01:00
|
|
|
owner: root
|
|
|
|
group: root
|
2023-04-18 18:24:55 +02:00
|
|
|
notify: restart wireguard
|