The enable parameter is a boolean, then convert to a boolean. (#1607)

At the moment, this only works when 'enable' is equals to 'yes' or 'no'.

While I'm on it, I also fixed a typo in the example and added a required
parameter.
pull/18777/head
Andrea Scarpino 9 years ago committed by Matt Clay
parent 26fe35fd0c
commit b4064a352e

@ -212,6 +212,7 @@ $action=Get-Attr $params "action" "";
$misArg = ''
# Check the arguments
if ($enable -ne $null) {
$enable=ConvertTo-Bool $enable;
if ($enable -eq $true) {
$fwsettings.Add("Enabled", "yes");
} elseif ($enable -eq $false) {

@ -114,10 +114,11 @@ EXAMPLES = '''
action: win_firewall_rule
args:
name: smtp
enabled: yes
enable: yes
state: present
localport: 25
action: allow
direction: In
protocol: TCP
'''

Loading…
Cancel
Save