mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
bugfix code error in win_firewall
This commit is contained in:
parent
1eb7aa5d78
commit
6972df76ef
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ $fwsettings.Add("Rule Name", $name)
|
||||||
#$fwsettings.Add("displayname", $name)
|
#$fwsettings.Add("displayname", $name)
|
||||||
|
|
||||||
$state = $state.ToString().ToLower()
|
$state = $state.ToString().ToLower()
|
||||||
If ($state -eq "present")){
|
If ($state -eq "present"){
|
||||||
$fwsettings.Add("Direction", $direction)
|
$fwsettings.Add("Direction", $direction)
|
||||||
$fwsettings.Add("Action", $action)
|
$fwsettings.Add("Action", $action)
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue