initial commit with empty 8192 bit key

This commit is contained in:
nd 2017-10-07 03:19:30 +02:00
commit 692852c125
6 changed files with 50 additions and 0 deletions

19
tasks/main.yml Normal file
View file

@ -0,0 +1,19 @@
- name: copy dh param
copy:
src: "dh-{{ item }}.pem"
dest: "/etc/ssl/dh-{{ item }}.pem"
with_items:
- 1024
- 2048
- 4096
- 8192
- name: create link to default dh param
file:
src: /etc/ssl/dh-4096.pem
dest: /etc/ssl/dhparams.pem
owner: root
group: root
state: link
mode: 0644