From 421c9205107f62b9ed653f5fef91cfa96703aca1 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Fri, 19 Jun 2020 19:27:34 +0200 Subject: [PATCH] Fix the handler name. --- tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index b260f11..7192de3 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -37,11 +37,11 @@ - name: Get the JDBC driver get_url: url={{ keycloak_jdbc_driver_url }} dest={{ keycloak_install_dir }}/{{ keycloak_distribution }}/modules/system/layers/base/{{ keycloak_db_module_path }}/main/{{ keycloak_jdbc_driver }} owner=root group=root mode=0444 - notify: Restart keycloak + notify: Restart Keycloak - name: Install the JDBC module configuration template: src=jdbc-module.xml.j2 dest={{ keycloak_install_dir }}/{{ keycloak_distribution }}/modules/system/layers/base/{{ keycloak_db_module_path }}/main/module.xml owner=root group=root mode=0444 - notify: Restart keycloak + notify: Restart Keycloak when: keycloak_use_external_db tags: [ 'keycloak', 'keycloak_db', 'keycloak_conf' ] @@ -53,7 +53,7 @@ with_items: - standalone.xml - standalone-ha.xml - notify: Restart keycloak + notify: Restart Keycloak tags: [ 'keycloak', 'keycloak_db', 'keycloak_conf' ] @@ -61,7 +61,7 @@ block: - name: Install the keycloak systemd unit template: src=keycloak.service.j2 dest=/etc/systemd/system/keycloak.service owner=root group=root mode=0644 - notify: Restart keycloak + notify: Restart Keycloak register: keycloak_unit - name: Reload systemd