Skip to content

Commit

Permalink
apt_repository fix (trailofbits#1017)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackivanov authored Jul 2, 2018
1 parent 4ca8c03 commit d1c58f0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion roles/dns_encryption/tasks/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
state: present
codename: artful
repo: ppa:shevchuk/dnscrypt-proxy

register: result
until: result|succeeded
retries: 10
delay: 3

- name: Install dnscrypt-proxy
apt:
name: dnscrypt-proxy
Expand Down
4 changes: 4 additions & 0 deletions roles/wireguard/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
apt_repository:
repo: ppa:wireguard/wireguard
state: present
register: result
until: result|succeeded
retries: 10
delay: 3

- name: WireGuard installed
apt:
Expand Down

0 comments on commit d1c58f0

Please sign in to comment.