Merge pull request #1052 from romeotheriault/add-SunOSVirtual-facts
Adding SunOSVirtual facts
This commit is contained in:
commit
9f417e3502
1 changed files with 58 additions and 0 deletions
58
setup
58
setup
|
@ -613,6 +613,7 @@ class Virtual(Facts):
|
||||||
you should define:
|
you should define:
|
||||||
- virtualization_type
|
- virtualization_type
|
||||||
- virtualization_role
|
- virtualization_role
|
||||||
|
- container (e.g. solaris zones, freebsd jails, linux containers)
|
||||||
|
|
||||||
All subclasses MUST define platform.
|
All subclasses MUST define platform.
|
||||||
"""
|
"""
|
||||||
|
@ -687,6 +688,63 @@ class LinuxVirtual(Virtual):
|
||||||
self.facts['virtualization_type'] = 'virtualbox'
|
self.facts['virtualization_type'] = 'virtualbox'
|
||||||
self.facts['virtualization_role'] = 'guest'
|
self.facts['virtualization_role'] = 'guest'
|
||||||
|
|
||||||
|
class SunOSVirtual(Virtual):
|
||||||
|
"""
|
||||||
|
This is a SunOS-specific subclass of Virtual. It defines
|
||||||
|
- virtualization_type
|
||||||
|
- virtualization_role
|
||||||
|
- container
|
||||||
|
"""
|
||||||
|
platform = 'SunOS'
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
Virtual.__init__(self)
|
||||||
|
|
||||||
|
def populate(self):
|
||||||
|
self.get_virtual_facts()
|
||||||
|
return self.facts
|
||||||
|
|
||||||
|
def get_virtual_facts(self):
|
||||||
|
cmd = subprocess.Popen("/usr/sbin/prtdiag", shell=True,
|
||||||
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
|
out, err = cmd.communicate()
|
||||||
|
for line in out.split('\n'):
|
||||||
|
if 'VMware' in line:
|
||||||
|
self.facts['virtualization_type'] = 'vmware'
|
||||||
|
self.facts['virtualization_role'] = 'guest'
|
||||||
|
if 'Parallels' in line:
|
||||||
|
self.facts['virtualization_type'] = 'parallels'
|
||||||
|
self.facts['virtualization_role'] = 'guest'
|
||||||
|
if 'VirtualBox' in line:
|
||||||
|
self.facts['virtualization_type'] = 'virtualbox'
|
||||||
|
self.facts['virtualization_role'] = 'guest'
|
||||||
|
if 'HVM domU' in line:
|
||||||
|
self.facts['virtualization_type'] = 'xen'
|
||||||
|
self.facts['virtualization_role'] = 'guest'
|
||||||
|
# Check if it's a zone
|
||||||
|
if os.path.exists("/usr/bin/zonename"):
|
||||||
|
cmd = subprocess.Popen("/usr/bin/zonename", shell=True,
|
||||||
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
|
out, err = cmd.communicate()
|
||||||
|
if out.rstrip() != "global":
|
||||||
|
self.facts['container'] = 'zone'
|
||||||
|
# Check if it's a branded zone (i.e. Solaris 8/9 zone)
|
||||||
|
if os.path.isdir('/.SUNWnative'):
|
||||||
|
self.facts['container'] = 'zone'
|
||||||
|
# If it's a zone check if we can detect if our global zone is itself virtualized.
|
||||||
|
# Relies on the "guest tools" (e.g. vmware tools) to be installed
|
||||||
|
if 'container' in self.facts and self.facts['container'] == 'zone':
|
||||||
|
cmd = subprocess.Popen("/usr/sbin/modinfo", shell=True,
|
||||||
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
|
out, err = cmd.communicate()
|
||||||
|
for line in out.split('\n'):
|
||||||
|
if 'VMware' in line:
|
||||||
|
self.facts['virtualization_type'] = 'vmware'
|
||||||
|
self.facts['virtualization_role'] = 'guest'
|
||||||
|
if 'VirtualBox' in line:
|
||||||
|
self.facts['virtualization_type'] = 'virtualbox'
|
||||||
|
self.facts['virtualization_role'] = 'guest'
|
||||||
|
|
||||||
def get_file_content(path):
|
def get_file_content(path):
|
||||||
data = None
|
data = None
|
||||||
if os.path.exists(path) and os.access(path, os.R_OK):
|
if os.path.exists(path) and os.access(path, os.R_OK):
|
||||||
|
|
Loading…
Reference in a new issue