1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix #1512 add missing property in win_firewall_rule

This commit is contained in:
tcr 2016-01-18 15:27:36 +01:00 committed by Matt Clay
parent 77ca6641cb
commit 7a1284fe70

View file

@ -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