ansible/roles/vpn/tasks/main.yml

42 lines
1 KiB
YAML
Raw Normal View History

2021-04-22 20:31:33 +02:00
---
- name: Add backports to buster
apt_repository:
repo: deb http://deb.debian.org/debian buster-backports main
state: present
2022-07-21 15:19:24 +02:00
when: ansible_facts["lsb"]["codename"] == "buster"
2021-04-22 20:49:28 +02:00
2021-04-22 23:33:09 +02:00
- name: Install wireguard dependencies for proxmox
apt:
name:
- pve-headers
- wireguard-dkms # May need a `dkms autoinstall` and reboot ?
state: latest
update_cache: true
2022-07-21 15:19:24 +02:00
when: ('proxmox' in group_names)
2021-04-22 23:33:09 +02:00
2021-04-22 20:49:28 +02:00
- name: Install wireguard
apt:
name:
- wireguard
state: latest
update_cache: true
2021-04-22 22:51:33 +02:00
- name: Create wireguard config files
2021-04-23 00:40:31 +02:00
ansible.builtin.template:
src: "wiregard.conf.j2"
2021-04-22 22:51:33 +02:00
dest: "/etc/wireguard/{{ item.key }}.conf"
owner: root
group: root
mode: '600'
notify: Restart wireguard for interface
2022-07-21 15:19:24 +02:00
loop: "{{ vpn_interfaces | dict2items }}"
no_log: "{{ enable_no_log | default('true') }}"
- name: Enable interface
systemd:
name: "wg-quick@{{ item.key }}"
state: started
enabled: yes
2022-07-21 15:19:24 +02:00
loop: "{{ vpn_interfaces | dict2items }}"
no_log: "{{ disable_no_log | not | default('true') }}"