open_iscsi module: support RC 21 when listing logged-in target
parent
c469523db5
commit
592a5b6fb1
|
@ -162,6 +162,8 @@ def target_loggedon(module, target):
|
|||
|
||||
if rc == 0:
|
||||
return target in out
|
||||
elif rc == 21:
|
||||
return False
|
||||
else:
|
||||
module.fail_json(cmd=cmd, rc=rc, msg=err)
|
||||
|
||||
|
|
Loading…
Reference in New Issue