Using "OtherLinux" in module_commons, cleander detection in setup.

pull/2084/merge
James Martin 12 years ago committed by Michael DeHaan
parent 5646bc278b
commit 7129a9e355

@ -99,7 +99,7 @@ def get_distribution():
distribution = platform.linux_distribution()[0].capitalize()
if distribution == 'NA':
if os.path.is_file('/etc/system-release'):
distribution = 'Amazon'
distribution = 'OtherLinux'
except:
# FIXME: MethodMissing, I assume?
distribution = platform.dist()[0].capitalize()

@ -77,7 +77,7 @@ class Facts(object):
# This is the fallback to handle unknowns or exceptions
OSDIST_DICT = { '/etc/redhat-release': 'RedHat',
'/etc/vmware-release': 'VMwareESX',
'/etc/system-release': 'Amazon' }
'/etc/system-release': 'OtherLinux' }
SELINUX_MODE_DICT = { 1: 'enforcing', 0: 'permissive', -1: 'disabled' }
# A list of dicts. If there is a platform with more than one
@ -133,9 +133,10 @@ class Facts(object):
if os.path.exists(path):
if self.facts['distribution'] == 'Fedora':
pass
elif name == 'Amazon':
self.facts['distribution'] = 'Amazon'
elif name == 'OtherLinux':
data = get_file_content(path)
if 'Amazon' in data:
self.facts['distribution'] = 'Amazon'
self.facts['distribution_version'] = data.split()[-1]
elif name == 'RedHat':
data = get_file_content(path)

Loading…
Cancel
Save