remove assigned but unused variables in module_utils.
These were mostly saving exceptions but not using them. Getting rid of those will help with eventually running modules via either python2.4 or python3.x.
This commit is contained in:
parent
c08648999d
commit
9ce3adbeb1
2 changed files with 19 additions and 14 deletions
|
@ -56,6 +56,13 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import simplejson as json
|
import simplejson as json
|
||||||
|
|
||||||
|
# The distutils module is not shipped with SUNWPython on Solaris.
|
||||||
|
# It's in the SUNWPython-devel package which also contains development files
|
||||||
|
# that don't belong on production boxes. Since our Solaris code doesn't
|
||||||
|
# depend on LooseVersion, do not import it on Solaris.
|
||||||
|
if platform.system() != 'SunOS':
|
||||||
|
from distutils.version import LooseVersion
|
||||||
|
|
||||||
|
|
||||||
# --------------------------------------------------------------
|
# --------------------------------------------------------------
|
||||||
# timeout function to make sure some fact gathering
|
# timeout function to make sure some fact gathering
|
||||||
|
@ -230,13 +237,13 @@ class Facts(object):
|
||||||
fact = 'loading %s' % fact_base
|
fact = 'loading %s' % fact_base
|
||||||
try:
|
try:
|
||||||
fact = json.loads(out)
|
fact = json.loads(out)
|
||||||
except ValueError, e:
|
except ValueError:
|
||||||
# load raw ini
|
# load raw ini
|
||||||
cp = ConfigParser.ConfigParser()
|
cp = ConfigParser.ConfigParser()
|
||||||
try:
|
try:
|
||||||
cp.readfp(StringIO.StringIO(out))
|
cp.readfp(StringIO.StringIO(out))
|
||||||
except ConfigParser.Error, e:
|
except ConfigParser.Error:
|
||||||
fact="error loading fact - please check content"
|
fact = "error loading fact - please check content"
|
||||||
else:
|
else:
|
||||||
fact = {}
|
fact = {}
|
||||||
#print cp.sections()
|
#print cp.sections()
|
||||||
|
@ -510,7 +517,7 @@ class Facts(object):
|
||||||
self.facts['cmdline'][item[0]] = True
|
self.facts['cmdline'][item[0]] = True
|
||||||
else:
|
else:
|
||||||
self.facts['cmdline'][item[0]] = item[1]
|
self.facts['cmdline'][item[0]] = item[1]
|
||||||
except ValueError, e:
|
except ValueError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def get_public_ssh_host_keys(self):
|
def get_public_ssh_host_keys(self):
|
||||||
|
@ -556,7 +563,6 @@ class Facts(object):
|
||||||
# start with the easy ones
|
# start with the easy ones
|
||||||
elif self.facts['distribution'] == 'MacOSX':
|
elif self.facts['distribution'] == 'MacOSX':
|
||||||
#FIXME: find way to query executable, version matching is not ideal
|
#FIXME: find way to query executable, version matching is not ideal
|
||||||
from distutils.version import LooseVersion
|
|
||||||
if LooseVersion(platform.mac_ver()[0]) >= LooseVersion('10.4'):
|
if LooseVersion(platform.mac_ver()[0]) >= LooseVersion('10.4'):
|
||||||
self.facts['service_mgr'] = 'launchd'
|
self.facts['service_mgr'] = 'launchd'
|
||||||
else:
|
else:
|
||||||
|
@ -636,7 +642,7 @@ class Facts(object):
|
||||||
self.facts['selinux']['status'] = 'enabled'
|
self.facts['selinux']['status'] = 'enabled'
|
||||||
try:
|
try:
|
||||||
self.facts['selinux']['policyvers'] = selinux.security_policyvers()
|
self.facts['selinux']['policyvers'] = selinux.security_policyvers()
|
||||||
except OSError, e:
|
except OSError:
|
||||||
self.facts['selinux']['policyvers'] = 'unknown'
|
self.facts['selinux']['policyvers'] = 'unknown'
|
||||||
try:
|
try:
|
||||||
(rc, configmode) = selinux.selinux_getenforcemode()
|
(rc, configmode) = selinux.selinux_getenforcemode()
|
||||||
|
@ -644,12 +650,12 @@ class Facts(object):
|
||||||
self.facts['selinux']['config_mode'] = Facts.SELINUX_MODE_DICT.get(configmode, 'unknown')
|
self.facts['selinux']['config_mode'] = Facts.SELINUX_MODE_DICT.get(configmode, 'unknown')
|
||||||
else:
|
else:
|
||||||
self.facts['selinux']['config_mode'] = 'unknown'
|
self.facts['selinux']['config_mode'] = 'unknown'
|
||||||
except OSError, e:
|
except OSError:
|
||||||
self.facts['selinux']['config_mode'] = 'unknown'
|
self.facts['selinux']['config_mode'] = 'unknown'
|
||||||
try:
|
try:
|
||||||
mode = selinux.security_getenforce()
|
mode = selinux.security_getenforce()
|
||||||
self.facts['selinux']['mode'] = Facts.SELINUX_MODE_DICT.get(mode, 'unknown')
|
self.facts['selinux']['mode'] = Facts.SELINUX_MODE_DICT.get(mode, 'unknown')
|
||||||
except OSError, e:
|
except OSError:
|
||||||
self.facts['selinux']['mode'] = 'unknown'
|
self.facts['selinux']['mode'] = 'unknown'
|
||||||
try:
|
try:
|
||||||
(rc, policytype) = selinux.selinux_getpolicytype()
|
(rc, policytype) = selinux.selinux_getpolicytype()
|
||||||
|
@ -657,7 +663,7 @@ class Facts(object):
|
||||||
self.facts['selinux']['type'] = policytype
|
self.facts['selinux']['type'] = policytype
|
||||||
else:
|
else:
|
||||||
self.facts['selinux']['type'] = 'unknown'
|
self.facts['selinux']['type'] = 'unknown'
|
||||||
except OSError, e:
|
except OSError:
|
||||||
self.facts['selinux']['type'] = 'unknown'
|
self.facts['selinux']['type'] = 'unknown'
|
||||||
|
|
||||||
|
|
||||||
|
@ -978,7 +984,7 @@ class LinuxHardware(Hardware):
|
||||||
if key == 'form_factor':
|
if key == 'form_factor':
|
||||||
try:
|
try:
|
||||||
self.facts['form_factor'] = FORM_FACTOR[int(data)]
|
self.facts['form_factor'] = FORM_FACTOR[int(data)]
|
||||||
except IndexError, e:
|
except IndexError:
|
||||||
self.facts['form_factor'] = 'unknown (%s)' % data
|
self.facts['form_factor'] = 'unknown (%s)' % data
|
||||||
else:
|
else:
|
||||||
self.facts[key] = data
|
self.facts[key] = data
|
||||||
|
@ -1029,7 +1035,7 @@ class LinuxHardware(Hardware):
|
||||||
statvfs_result = os.statvfs(fields[1])
|
statvfs_result = os.statvfs(fields[1])
|
||||||
size_total = statvfs_result.f_bsize * statvfs_result.f_blocks
|
size_total = statvfs_result.f_bsize * statvfs_result.f_blocks
|
||||||
size_available = statvfs_result.f_bsize * (statvfs_result.f_bavail)
|
size_available = statvfs_result.f_bsize * (statvfs_result.f_bavail)
|
||||||
except OSError, e:
|
except OSError:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
uuid = 'NA'
|
uuid = 'NA'
|
||||||
|
@ -2958,7 +2964,7 @@ class SunOSVirtual(Virtual):
|
||||||
hostfeatures.append(arg[0])
|
hostfeatures.append(arg[0])
|
||||||
if( len(hostfeatures) > 0 ):
|
if( len(hostfeatures) > 0 ):
|
||||||
self.facts['virtualization_role'] = 'host (' + ','.join(hostfeatures) + ')'
|
self.facts['virtualization_role'] = 'host (' + ','.join(hostfeatures) + ')'
|
||||||
except ValueError, e:
|
except ValueError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def get_file_content(path, default=None, strip=True):
|
def get_file_content(path, default=None, strip=True):
|
||||||
|
|
|
@ -122,7 +122,7 @@ def not_in_host_file(self, host):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
host_fh = open(hf)
|
host_fh = open(hf)
|
||||||
except IOError, e:
|
except IOError:
|
||||||
hfiles_not_found += 1
|
hfiles_not_found += 1
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
|
@ -156,7 +156,6 @@ def add_host_key(module, fqdn, key_type="rsa", create_dir=False):
|
||||||
|
|
||||||
""" use ssh-keyscan to add the hostkey """
|
""" use ssh-keyscan to add the hostkey """
|
||||||
|
|
||||||
result = False
|
|
||||||
keyscan_cmd = module.get_bin_path('ssh-keyscan', True)
|
keyscan_cmd = module.get_bin_path('ssh-keyscan', True)
|
||||||
|
|
||||||
if 'USER' in os.environ:
|
if 'USER' in os.environ:
|
||||||
|
|
Loading…
Add table
Reference in a new issue