mirror of
https://gitea.0xace.cc/ansible-galaxy/wireguard-ui.git
synced 2024-11-24 23:36:41 +00:00
15 lines
376 B
YAML
15 lines
376 B
YAML
- name: Install wireguard for Debain 12
|
|
block:
|
|
- name: Install wireguard packages
|
|
apt:
|
|
name:
|
|
- wireguard-tools
|
|
state: present
|
|
update_cache: yes
|
|
|
|
- name: Enable wg-quick systemd unit
|
|
systemd:
|
|
name: wg-quick@{{ wireguard_ui_combined_env['WGUI_CONFIG_FILE_PATH'] | basename | split('.') | first }}
|
|
enabled: yes
|
|
daemon_reload: yes
|