From af01da17a7b375850ced79d9735a6c219e6da0e4 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sat, 4 Aug 2018 22:59:37 +0200 Subject: [PATCH] fix typo for handler --- tasks/tls.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/tls.yml b/tasks/tls.yml index 61c19bf..56b6c0d 100644 --- a/tasks/tls.yml +++ b/tasks/tls.yml @@ -19,7 +19,7 @@ - { src: "{{ ucs_tls_cert_path }}", dest: "{{ ucs_tls_key_dir }}/ucs.pem", mode: '0750' } loop_control: label: "{{ item.dest }}" - notify: __ucr_apache_restart + notify: __ucs_apache_restart - name: Set necessary ucr vars ucr: @@ -28,6 +28,6 @@ with_items: - { path: apache2/ssl/certificate, value: "{{ ucs_tls_certs_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_user: root