Commit 7129a9e3 by James Martin Committed by Michael DeHaan

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

parent 5646bc27
......@@ -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)
......
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