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.
14 lines
391 B
YAML
14 lines
391 B
YAML
---
|
|
# Copyright (C) 2022 Robert Wimmer
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: (elementary OS) Update APT package cache
|
|
ansible.builtin.apt:
|
|
update_cache: "{{ wireguard_ubuntu_update_cache }}"
|
|
cache_valid_time: "{{ wireguard_ubuntu_cache_valid_time }}"
|
|
|
|
- name: (elementary OS) Install wireguard package
|
|
ansible.builtin.apt:
|
|
name: "wireguard"
|
|
state: present
|