Fix logic to ensure state is either present or absent
This commit is contained in:
parent
376d1cc0a4
commit
03526456fa
1 changed files with 2 additions and 2 deletions
|
@ -37,8 +37,8 @@ Else {
|
|||
|
||||
If ($params.state) {
|
||||
$state = $params.state.ToString().ToLower()
|
||||
If (!($state -eq 'present') -or ($state -eq 'absent')) {
|
||||
Fail-Json $result "state must be 'present' or 'absent'"
|
||||
If (($state -ne 'present') -and ($state -ne 'absent')) {
|
||||
Fail-Json $result "state is '$state'; must be 'present' or 'absent'"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue