Add Solaris O/S facts "distribution" and "distribution_*"
This commit is contained in:
parent
373e4ee7d4
commit
3bdf742d50
1 changed files with 12 additions and 2 deletions
14
system/setup
14
system/setup
|
@ -102,7 +102,8 @@ class Facts(object):
|
|||
'/etc/vmware-release': 'VMwareESX',
|
||||
'/etc/openwrt_release': 'OpenWrt',
|
||||
'/etc/system-release': 'OtherLinux',
|
||||
'/etc/alpine-release': 'Alpine' }
|
||||
'/etc/alpine-release': 'Alpine',
|
||||
'/etc/release': 'Solaris' }
|
||||
SELINUX_MODE_DICT = { 1: 'enforcing', 0: 'permissive', -1: 'disabled' }
|
||||
|
||||
# A list of dicts. If there is a platform with more than one
|
||||
|
@ -135,7 +136,7 @@ class Facts(object):
|
|||
return self.facts
|
||||
|
||||
# Platform
|
||||
# patform.system() can be Linux, Darwin, Java, or Windows
|
||||
# platform.system() can be Linux, Darwin, Java, or Windows
|
||||
def get_platform_facts(self):
|
||||
self.facts['system'] = platform.system()
|
||||
self.facts['kernel'] = platform.release()
|
||||
|
@ -235,6 +236,15 @@ class Facts(object):
|
|||
data = get_file_content(path)
|
||||
self.facts['distribution'] = 'Alpine'
|
||||
self.facts['distribution_version'] = data
|
||||
elif name == 'Solaris':
|
||||
data = get_file_content(path).split('\n')[0]
|
||||
if 'Oracle Solaris' in data:
|
||||
data = " ".join(data.split()[1:None])
|
||||
self.facts['distribution'] = data.split()[0]
|
||||
self.facts['distribution_version'] = data.split()[1]
|
||||
distribution_release = " ".join(data.split()[2:None])
|
||||
if distribution_release != 'X86' and distribution_release != 'SPARC':
|
||||
self.facts['distribution_release'] = distribution_release
|
||||
else:
|
||||
self.facts['distribution'] = name
|
||||
|
||||
|
|
Loading…
Reference in a new issue