mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
Merge pull request #7532 from oasiswork/devel
open_iscsi module: support RC 21 when listing logged-in target
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user