Commit 592a5b6f by Nicolas Brisac

open_iscsi module: support RC 21 when listing logged-in target

parent c469523d
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment