Skip to content
This repository has been archived by the owner on Jun 4, 2021. It is now read-only.

Commit

Permalink
comment out openvpn apt, install from ubuntu repo instead
Browse files Browse the repository at this point in the history
  • Loading branch information
alimakki committed Sep 23, 2018
1 parent 7b125c6 commit 17a4e89
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions playbooks/roles/openvpn/tasks/install.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
---
- name: "Add the official OpenVPN APT key; hiding 25 lines of log..."
apt_key:
id: E158C569
data: "{{ item }}"
with_file: openvpn_signing.key
no_log: True
#- name: "Add the official OpenVPN APT key; hiding 25 lines of log..."
# apt_key:
# id: E158C569
# data: "{{ item }}"
# with_file: openvpn_signing.key
# no_log: True

- name: Add the official OpenVPN repository
apt_repository:
repo: 'deb https://build.openvpn.net/debian/openvpn/stable {{ ansible_lsb.codename }} main'
state: present
register: openvpn_add_apt_repository
until: not openvpn_add_apt_repository.failed
retries: "{{ apt_repository_retries }}"
delay: "{{ apt_repository_delay }}"
#- name: Add the official OpenVPN repository
# apt_repository:
# repo: 'deb https://build.openvpn.net/debian/openvpn/stable {{ ansible_lsb.codename }} main'
# state: present
# register: openvpn_add_apt_repository
# until: not openvpn_add_apt_repository.failed
# retries: "{{ apt_repository_retries }}"
# delay: "{{ apt_repository_delay }}"

- name: Install OpenVPN and its dependencies from APT
apt:
Expand Down
4 changes: 2 additions & 2 deletions playbooks/streisand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
- ssh
- role: openconnect
when: streisand_openconnect_enabled
#- role: openvpn
# when: streisand_openvpn_enabled
- role: openvpn
when: streisand_openvpn_enabled
#- role: shadowsocks
# when: streisand_shadowsocks_enabled
- role: ssh-forward
Expand Down

0 comments on commit 17a4e89

Please sign in to comment.