You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
441 B
YAML
17 lines
441 B
YAML
5 years ago
|
---
|
||
|
|
||
|
# Generate locally because of more randomness & faster generation
|
||
|
- name: Generate dh params locally
|
||
|
command: openssl dhparam -out {{ dhparams_local_path | quote }} {{ dhparams_size }}
|
||
|
args:
|
||
|
creates: "{{ dhparams_local_path }}"
|
||
|
delegate_to: localhost
|
||
|
|
||
|
- name: Upload dh params to remote
|
||
|
copy:
|
||
|
src: "{{ dhparams_local_path }}"
|
||
|
dest: "{{ dhparams_remote_path }}"
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: u=rw,g=r,o=r
|