mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
bugfix code error in win_firewall
This commit is contained in:
committed by
Matt Clay
parent
1eb7aa5d78
commit
6972df76ef
@@ -230,7 +230,7 @@ $fwsettings.Add("Rule Name", $name)
|
||||
#$fwsettings.Add("displayname", $name)
|
||||
|
||||
$state = $state.ToString().ToLower()
|
||||
If ($state -eq "present")){
|
||||
If ($state -eq "present"){
|
||||
$fwsettings.Add("Direction", $direction)
|
||||
$fwsettings.Add("Action", $action)
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user