Move check down for access to

pull/7861/head
Paul Durivage 10 years ago
parent 07267659b0
commit 319f32e408

@ -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"

Loading…
Cancel
Save