mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
win_scheduled_task: fix days_of_week var command typo (#3198)
This commit is contained in:
committed by
Matt Clay
parent
adc62226d4
commit
e5688c709a
@@ -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 " "
|
||||
|
||||
Reference in New Issue
Block a user