Skip to content

Commit

Permalink
Fix WireGuard installation error
Browse files Browse the repository at this point in the history
Now wireguard is part of standard repos
  • Loading branch information
LantosBro committed Dec 3, 2020
1 parent d6ae33e commit 508f89c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions playbooks/roles/wireguard/tasks/install.yml
Expand Up @@ -4,13 +4,13 @@
command: uname -r
register: kernel_release

- name: Add the WireGuard PPA
apt_repository:
repo: 'ppa:wireguard/wireguard'
register: wireguard_add_apt_repository
until: not wireguard_add_apt_repository.failed
retries: "{{ apt_repository_retries }}"
delay: "{{ apt_repository_delay }}"
#- name: Add the WireGuard PPA
# apt_repository:
# repo: 'ppa:wireguard/wireguard'
# register: wireguard_add_apt_repository
# until: not wireguard_add_apt_repository.failed
# retries: "{{ apt_repository_retries }}"
# delay: "{{ apt_repository_delay }}"

- name: Install the WireGuard packages
apt:
Expand Down

0 comments on commit 508f89c

Please sign in to comment.