From 971a3d7e2f55148c1f7c063265cb1df0c2adf209 Mon Sep 17 00:00:00 2001 From: Bill Peck Date: Tue, 26 Nov 2024 11:37:40 -0500 Subject: [PATCH] IIS restart handler was renamed The handler name was capitolized but we didn't update the notify lines. --- roles/windows_manage_iis/tasks/create.yml | 2 +- roles/windows_manage_iis/tasks/delete.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/windows_manage_iis/tasks/create.yml b/roles/windows_manage_iis/tasks/create.yml index 722d5f1..9479381 100644 --- a/roles/windows_manage_iis/tasks/create.yml +++ b/roles/windows_manage_iis/tasks/create.yml @@ -32,7 +32,7 @@ state: started port: "{{ windows_manage_iis_port }}" physical_path: "{{ windows_manage_iis_path }}" - notify: restart iis service + notify: Restart iis service register: windows_manage_iis_output - name: Update Results w/win_iis_website diff --git a/roles/windows_manage_iis/tasks/delete.yml b/roles/windows_manage_iis/tasks/delete.yml index 5008b1a..3739dee 100644 --- a/roles/windows_manage_iis/tasks/delete.yml +++ b/roles/windows_manage_iis/tasks/delete.yml @@ -15,7 +15,7 @@ community.windows.win_iis_website: name: "{{ windows_manage_iis_name }}" state: absent - notify: restart iis service + notify: Restart iis service register: windows_manage_iis_output - name: Update Results w/win_iis_website