10 lines
225 B
YAML
10 lines
225 B
YAML
- name: Install wireguard
|
|
become: true
|
|
apt:
|
|
name: wireguard
|
|
state: present
|
|
- name: Install home.conf
|
|
become: true
|
|
template:
|
|
src: "{{ role_path }}/templates/home.conf.j2"
|
|
dest: /etc/wireguard/home.conf
|