mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update and correct iSCSI facts collection (#44644)
Co-authored-by: Simon Dodsley <simon@purestorage.com>
This commit is contained in:
parent
b908a348a6
commit
d7975462da
2 changed files with 43 additions and 6 deletions
4
changelogs/fragments/iscsi_facts_hp-ux_aix.yaml
Normal file
4
changelogs/fragments/iscsi_facts_hp-ux_aix.yaml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
minor_changes:
|
||||||
|
- setup - gather iSCSI facts for HP-UX (https://github.com/ansible/ansible/pull/44644)
|
||||||
|
bugfixes:
|
||||||
|
- setup - properly gather iSCSI information for AIX (https://github.com/ansible/ansible/pull/44644)
|
|
@ -18,8 +18,8 @@
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
import subprocess
|
|
||||||
import sys
|
import sys
|
||||||
|
import subprocess
|
||||||
|
|
||||||
from ansible.module_utils.facts.utils import get_file_content
|
from ansible.module_utils.facts.utils import get_file_content
|
||||||
from ansible.module_utils.facts.network.base import NetworkCollector
|
from ansible.module_utils.facts.network.base import NetworkCollector
|
||||||
|
@ -45,11 +45,28 @@ class IscsiInitiatorNetworkCollector(NetworkCollector):
|
||||||
# lsattr -E -l iscsi0
|
# lsattr -E -l iscsi0
|
||||||
disc_filename /etc/iscsi/targets Configuration file False
|
disc_filename /etc/iscsi/targets Configuration file False
|
||||||
disc_policy file Discovery Policy True
|
disc_policy file Discovery Policy True
|
||||||
initiator_name iqn.localhost.hostid.7f000001 iSCSI Initiator Name True
|
initiator_name iqn.localhost.hostid.7f000002 iSCSI Initiator Name True
|
||||||
isns_srvnames auto iSNS Servers IP Addresses True
|
isns_srvnames auto iSNS Servers IP Addresses True
|
||||||
isns_srvports iSNS Servers Port Numbers True
|
isns_srvports iSNS Servers Port Numbers True
|
||||||
max_targets 16 Maximum Targets Allowed True
|
max_targets 16 Maximum Targets Allowed True
|
||||||
num_cmd_elems 200 Maximum number of commands to queue to driver True
|
num_cmd_elems 200 Maximum number of commands to queue to driver True
|
||||||
|
|
||||||
|
Example of output from the HP-UX iscsiutil command:
|
||||||
|
|
||||||
|
#iscsiutil -l
|
||||||
|
Initiator Name : iqn.1986-03.com.hp:mcel_VMhost3.1f355cf6-e2db-11e0-a999-b44c0aef5537
|
||||||
|
Initiator Alias :
|
||||||
|
|
||||||
|
Authentication Method : None
|
||||||
|
CHAP Method : CHAP_UNI
|
||||||
|
Initiator CHAP Name :
|
||||||
|
CHAP Secret :
|
||||||
|
NAS Hostname :
|
||||||
|
NAS Secret :
|
||||||
|
Radius Server Hostname :
|
||||||
|
Header Digest : None, CRC32C (default)
|
||||||
|
Data Digest : None, CRC32C (default)
|
||||||
|
SLP Scope list for iSLPD :
|
||||||
"""
|
"""
|
||||||
|
|
||||||
iscsi_facts = {}
|
iscsi_facts = {}
|
||||||
|
@ -62,8 +79,24 @@ class IscsiInitiatorNetworkCollector(NetworkCollector):
|
||||||
iscsi_facts['iscsi_iqn'] = line.split('=', 1)[1]
|
iscsi_facts['iscsi_iqn'] = line.split('=', 1)[1]
|
||||||
break
|
break
|
||||||
elif sys.platform.startswith('aix'):
|
elif sys.platform.startswith('aix'):
|
||||||
|
if module is not None:
|
||||||
|
rc, out, err = module.run_command('/usr/sbin/lsattr -E -l iscsi0 | grep initiator_name')
|
||||||
|
if out:
|
||||||
|
iscsi_facts['iscsi_iqn'] = out.split()[1].rstrip()
|
||||||
|
else:
|
||||||
aixcmd = '/usr/sbin/lsattr -E -l iscsi0 | grep initiator_name'
|
aixcmd = '/usr/sbin/lsattr -E -l iscsi0 | grep initiator_name'
|
||||||
aixret = subprocess.check_output(aixcmd, shell=True)
|
aixret = subprocess.check_output(aixcmd, shell=True)
|
||||||
if aixret[0].isalpha():
|
if aixret[0].isalpha():
|
||||||
iscsi_facts['iscsi_iqn'] = aixret.split()[1].rstrip()
|
iscsi_facts['iscsi_iqn'] = aixret.split()[1].rstrip()
|
||||||
|
elif sys.platform.startswith('hp-ux'):
|
||||||
|
if module is not None:
|
||||||
|
rc, out, err = module.run_command("/opt/iscsi/bin/iscsiutil -l | grep 'Initiator Name'",
|
||||||
|
use_unsafe_shell=True)
|
||||||
|
if out:
|
||||||
|
iscsi_facts['iscsi_iqn'] = out.split(":", 1)[1].rstrip()
|
||||||
|
else:
|
||||||
|
hpuxcmd = "/opt/iscsi/bin/iscsiutil -l | grep 'Initiator Name'"
|
||||||
|
hpuxret = subprocess.check_output(hpuxcmd, shell=True)
|
||||||
|
if hpuxret[0].isalpha():
|
||||||
|
iscsi_facts['iscsi_iqn'] = hpuxret.split(":", 1)[1].rstrip()
|
||||||
return iscsi_facts
|
return iscsi_facts
|
||||||
|
|
Loading…
Reference in a new issue