computer-playbook/roles/native-wireguard/tasks/main.yml

22 lines
604 B
YAML
Raw Normal View History

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
2021-01-12 09:44:14 +01:00
when: ansible_os_family == "Arch"
- 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
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
- name: enable ipv4-forwarding
shell: sysctl net.ipv4.ip_forward=1
- name: enable ipv6-forwarding
shell: sysctl net.ipv6.conf.all.forwarding=1