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
495 B
YAML
17 lines
495 B
YAML
---
|
|
# Copyright (C) 2021 Tobias Richter
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: (Proxmox) Add WireGuard repository
|
|
ansible.builtin.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.
|
|
ansible.builtin.apt:
|
|
install_recommends: false
|
|
name:
|
|
- wireguard-tools
|
|
state: present
|