2021-01-12 09:44:14 +01:00
|
|
|
- name: install wireguard for Arch
|
2020-12-24 14:27:31 +01: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
|
|
|
|
apt: name=wireguard state=present
|
|
|
|
when: ansible_os_family == "Debian"
|
2020-12-24 14:27:31 +01:00
|
|
|
|
|
|
|
- name: create /etc/wireguard/wg0.conf
|
2020-12-25 11:55:46 +01:00
|
|
|
copy:
|
|
|
|
src: "{{ inventory_dir }}/files/{{ inventory_hostname }}/etc/wireguard/wg0.conf"
|
|
|
|
dest: /etc/wireguard/wg0.conf
|
|
|
|
owner: root
|
|
|
|
group: root
|
2020-12-24 14:27:31 +01:00
|
|
|
notify: restart wireguard
|
2021-01-11 18:51:44 +01:00
|
|
|
|
|
|
|
- name: enable ipv4-forwarding
|
|
|
|
shell: sysctl net.ipv4.ip_forward=1
|
|
|
|
|
|
|
|
- name: enable ipv6-forwarding
|
|
|
|
shell: sysctl net.ipv6.conf.all.forwarding=1
|