mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Move check down for access to
This commit is contained in:
@@ -56,11 +56,6 @@ If (-not $params.name.GetType)
|
||||
Fail-Json $result "missing required arguments: name"
|
||||
}
|
||||
|
||||
If (-not $params.password.GetType)
|
||||
{
|
||||
Fail-Json $result "missing required arguments: password"
|
||||
}
|
||||
|
||||
If ($params.state) {
|
||||
$state = $params.state.ToString().ToLower()
|
||||
If (($state -ne 'present') -and ($state -ne 'absent')) {
|
||||
@@ -71,6 +66,11 @@ Elseif (!$params.state) {
|
||||
$state = "present"
|
||||
}
|
||||
|
||||
If ((-not $params.password.GetType) -and ($state -eq 'present'))
|
||||
{
|
||||
Fail-Json $result "missing required arguments: password"
|
||||
}
|
||||
|
||||
$username = Get-Attr $params "name"
|
||||
$password = Get-Attr $params "password"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user