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

Commit 7b6b6ba

Browse files
authored
Merge branch 'master' into ocserv_cli_instructions
2 parents 8e356e1 + 2c11e75 commit 7b6b6ba

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

playbooks/roles/lets-encrypt/tasks/install.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
- name: Add the APT key for acmetool
1+
- name: "Add the APT key for acmetool; hiding 25 lines of log..."
22
apt_key:
33
id: 9862409EF124EC763B84972FF5AC9651EDB58DFA
44
data: "{{ item }}"
55
with_file: acmetool_ppa.pem
6+
no_log: True
67

78
- name: Add the official acmetool repository
89
apt_repository:

playbooks/roles/nginx/tasks/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
state: absent
66
with_items: "{{ apache_packages_to_remove }}"
77

8-
- name: Add the official Nginx APT key
8+
- name: "Add the official Nginx APT key; hiding 25 lines of log..."
99
apt_key:
1010
id: 7BD9BF62
1111
data: "{{ item }}"
1212
with_file: nginx_signing.key
13+
no_log: True
1314

1415
- name: Add the official Nginx repository
1516
apt_repository:

playbooks/roles/openvpn/tasks/install.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
2-
- name: Add the official OpenVPN APT key
2+
- name: "Add the official OpenVPN APT key; hiding 25 lines of log..."
33
apt_key:
44
id: E158C569
55
data: "{{ item }}"
66
with_file: openvpn_signing.key
7+
no_log: True
78

89
- name: Add the official OpenVPN repository
910
apt_repository:

playbooks/roles/tor-bridge/tasks/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
2-
- name: Add the Tor APT key
2+
- name: "Add the Tor APT key; hiding 200 lines of log..."
33
apt_key:
44
id: 886DDD89
55
data: "{{ item }}"
66
with_file: tor-signing.key
7+
no_log: True
78

89
- name: Add the Tor repository
910
apt_repository:

0 commit comments

Comments
 (0)