Browse Source

Use https for rpsamd key and repository

Laurent Arnoud 8 years ago
parent
commit
d56f0bd7ef
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      roles/mailserver/tasks/rspamd.yml

+ 2
- 2
roles/mailserver/tasks/rspamd.yml View File

2
 # Installs and configures the Rspamd spam filtering system.
2
 # Installs and configures the Rspamd spam filtering system.
3
 
3
 
4
 - name: Ensure repository key for Rspamd is in place
4
 - name: Ensure repository key for Rspamd is in place
5
-  apt_key: url=http://rspamd.com/apt-stable/gpg.key state=present
5
+  apt_key: url=https://rspamd.com/apt-stable/gpg.key state=present
6
   tags:
6
   tags:
7
     - dependencies
7
     - dependencies
8
 
8
 
9
 - name: Add Rspamd repository
9
 - name: Add Rspamd repository
10
-  apt_repository: repo="deb http://rspamd.com/apt-stable/ {{ ansible_distribution_release }} main"
10
+  apt_repository: repo="deb https://rspamd.com/apt-stable/ {{ ansible_distribution_release }} main"
11
   tags:
11
   tags:
12
     - dependencies
12
     - dependencies
13
 
13
 

Loading…
Cancel
Save