You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
460 B
YAML
17 lines
460 B
YAML
3 years ago
|
---
|
||
|
# Copyright (C) 2021 Tobias Richter
|
||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
- name: (Proxmox) Add WireGuard repository
|
||
|
apt_repository:
|
||
|
repo: "deb http://deb.debian.org/debian buster-backports main"
|
||
|
state: "{{ 'present' if (ansible_distribution_version | int <= 10) else 'absent' }}"
|
||
|
update_cache: true
|
||
|
|
||
|
- name: (Proxmox lxc) Install wireguard-tools.
|
||
|
apt:
|
||
|
install_recommends: no
|
||
|
name:
|
||
|
- wireguard-tools
|
||
|
state: present
|