win_scheduled_task: fix days_of_week var command typo (#3198)
This commit is contained in:
parent
adc62226d4
commit
e5688c709a
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ $ErrorActionPreference = "Stop"
|
|||
|
||||
$params = Parse-Args $args;
|
||||
|
||||
$days_of_week = Get-AnsibleParam $params -anem "days_of_week"
|
||||
$days_of_week = Get-AnsibleParam $params -name "days_of_week"
|
||||
$enabled = Get-AnsibleParam $params -name "enabled" -default $true
|
||||
$enabled = $enabled | ConvertTo-Bool
|
||||
$description = Get-AnsibleParam $params -name "description" -default " "
|
||||
|
|
Loading…
Reference in a new issue