mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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;
|
$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 = Get-AnsibleParam $params -name "enabled" -default $true
|
||||||
$enabled = $enabled | ConvertTo-Bool
|
$enabled = $enabled | ConvertTo-Bool
|
||||||
$description = Get-AnsibleParam $params -name "description" -default " "
|
$description = Get-AnsibleParam $params -name "description" -default " "
|
||||||
|
|
Loading…
Reference in a new issue