fix typo for handler

This commit is contained in:
Robert Kaussow 2018-08-04 22:59:37 +02:00
parent 93b54f4491
commit af01da17a7

View File

@ -19,7 +19,7 @@
- { src: "{{ ucs_tls_cert_path }}", dest: "{{ ucs_tls_key_dir }}/ucs.pem", mode: '0750' } - { src: "{{ ucs_tls_cert_path }}", dest: "{{ ucs_tls_key_dir }}/ucs.pem", mode: '0750' }
loop_control: loop_control:
label: "{{ item.dest }}" label: "{{ item.dest }}"
notify: __ucr_apache_restart notify: __ucs_apache_restart
- name: Set necessary ucr vars - name: Set necessary ucr vars
ucr: ucr:
@ -28,6 +28,6 @@
with_items: with_items:
- { path: apache2/ssl/certificate, value: "{{ ucs_tls_certs_dir }}/ucs.pem" } - { path: apache2/ssl/certificate, value: "{{ ucs_tls_certs_dir }}/ucs.pem" }
- { path: apache2/ssl/key, value: "{{ ucs_tls_key_dir }}/ucs.pem" } - { path: apache2/ssl/key, value: "{{ ucs_tls_key_dir }}/ucs.pem" }
notify: __ucr_apache_restart notify: __ucs_apache_restart
become: True become: True
become_user: root become_user: root