xoxys.pve/tasks/tls.yml

56 lines
1.5 KiB
YAML
Raw Normal View History

2018-08-18 16:37:48 +02:00
---
- block:
- name: Create pki folder structure
file:
path: "{{ item }}"
state: directory
recurse: True
with_items:
- /etc/pki/tls/certs
- /etc/pki/tls/private
- name: Copy certs and private key (file)
copy:
src: "{{ item.0.source }}"
dest: "{{ item.0.path }}/{{ item.0.name }}"
mode: "{{ item.0.mode }}"
with_subelements:
- "{{ __pve_certificates }}"
- nodes
loop_control:
label: "{{ item.0.path }}/{{ item.0.name }}"
2018-08-18 16:52:11 +02:00
register: __pve_copy_cert_file
when: pve_tls_source_use_files
- set_fact:
__pve_copy_cert: "{{ __pve_copy_cert_file }}"
2018-08-18 16:37:48 +02:00
when: pve_tls_source_use_files
- name: Copy certs and private key (content)
copy:
content: "{{ item.0.source }}"
dest: "{{ item.0.path }}/{{ item.0.name }}"
mode: "{{ item.0.mode }}"
with_subelements:
- "{{ __pve_certificates }}"
- nodes
loop_control:
label: "{{ item.0.path }}/{{ item.0.name }}"
2018-08-18 16:52:11 +02:00
register: __pve_copy_cert_content
when: pve_tls_source_use_content
- set_fact:
__pve_copy_cert: "{{ __pve_copy_cert_content }}"
2018-08-18 16:37:48 +02:00
when: pve_tls_source_use_content
2018-08-18 17:16:32 +02:00
- name: Copy cert/key to pve filesystem
command: "/bin/cp -rf {{ item.dest }} /etc/pve/nodes/{{ item.dest | basename }}"
when: item.changed
changed_when: item.changed
with_items: "{{ __pve_copy_cert.results }}"
loop_control:
label: "/etc/pve/nodes/{{ item.dest | basename }}"
notify: __pveproxy_restart
2018-08-18 16:37:48 +02:00
become: True
become_user: root