Fix logic to ensure state is either present or absent

This commit is contained in:
Paul Durivage 2014-06-19 10:26:08 -05:00 committed by Matt Martz
parent 376d1cc0a4
commit 03526456fa

View file

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