From c4cb4374ea8573b0d5b6656b1702b7fc8968eff4 Mon Sep 17 00:00:00 2001 From: David Mehren <git@herrmehren.de> Date: Sun, 27 Nov 2022 12:13:57 +0100 Subject: [PATCH] Fix notify statements --- tasks/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index ea39ba9..8a59294 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -46,8 +46,8 @@ remote_src: true when: not keycloak_directory.stat.exists notify: - - build keycloak - - restart keycloak + - Build keycloak + - Restart keycloak - name: Create keycloak log directory ansible.builtin.file: @@ -81,15 +81,15 @@ group: keycloak mode: 0644 notify: - - build keycloak - - restart keycloak + - Build keycloak + - Restart keycloak - name: Install systemd unit file ansible.builtin.template: src: keycloak.service.j2 dest: /etc/systemd/system/keycloak.service mode: 0644 - notify: restart keycloak + notify: Restart keycloak - name: Inform about setting up admin user ansible.builtin.debug: -- GitLab