From 7a1284fe70f8a8aa8b98068def3cdde7f461bbbd Mon Sep 17 00:00:00 2001 From: tcr Date: Mon, 18 Jan 2016 15:27:36 +0100 Subject: [PATCH] Fix #1512 add missing property in win_firewall_rule --- lib/ansible/modules/extras/windows/win_firewall_rule.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ansible/modules/extras/windows/win_firewall_rule.ps1 b/lib/ansible/modules/extras/windows/win_firewall_rule.ps1 index 33ac7f3fbbd..5012cb041da 100644 --- a/lib/ansible/modules/extras/windows/win_firewall_rule.ps1 +++ b/lib/ansible/modules/extras/windows/win_firewall_rule.ps1 @@ -98,6 +98,7 @@ function getFirewallRule ($fwsettings) { $msg += @("No rule could be found"); }; $result = @{ + failed = $false exists = $exists identical = $correct multiple = $multi @@ -137,6 +138,7 @@ function createFireWallRule ($fwsettings) { $msg+=@("Created firewall rule $name"); $result=@{ + failed = $false output=$output changed=$true msg=$msg