From 0015940c5aa910a07c6ed33c36d6ce7683632d24 Mon Sep 17 00:00:00 2001 From: Kylian Serrania Date: Mon, 19 Apr 2021 09:16:52 +0200 Subject: [PATCH] [handlers] Fix typo when importing main-win.yml (#347) Fixes a typo when including the main-win.yml file. This is causing errors when the role tries to notify a restart on Windows. --- handlers/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers/main.yml b/handlers/main.yml index c0a7ffe0..f740429a 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -12,5 +12,5 @@ state: restarted when: datadog_enabled and not ansible_check_mode and not ansible_facts.os_family == "Windows" -- include_tasks: handlers/main-win.yaml +- include_tasks: handlers/main-win.yml when: ansible_facts.os_family == "Windows"