Merge pull request #1513 from AbletonDevTools/devel
Fix #1512 add missing property in win_firewall_rule
This commit is contained in:
commit
cecff17de3
1 changed files with 2 additions and 0 deletions
|
@ -98,6 +98,7 @@ function getFirewallRule ($fwsettings) {
|
||||||
$msg += @("No rule could be found");
|
$msg += @("No rule could be found");
|
||||||
};
|
};
|
||||||
$result = @{
|
$result = @{
|
||||||
|
failed = $false
|
||||||
exists = $exists
|
exists = $exists
|
||||||
identical = $correct
|
identical = $correct
|
||||||
multiple = $multi
|
multiple = $multi
|
||||||
|
@ -137,6 +138,7 @@ function createFireWallRule ($fwsettings) {
|
||||||
$msg+=@("Created firewall rule $name");
|
$msg+=@("Created firewall rule $name");
|
||||||
|
|
||||||
$result=@{
|
$result=@{
|
||||||
|
failed = $false
|
||||||
output=$output
|
output=$output
|
||||||
changed=$true
|
changed=$true
|
||||||
msg=$msg
|
msg=$msg
|
||||||
|
|
Loading…
Reference in a new issue