| Server IP : 162.253.224.18 / Your IP : 216.73.217.81 Web Server : Apache System : Linux s18.infinitysrv.com 3.10.0-962.3.2.lve1.5.89.el7.x86_64 #1 SMP Thu Jul 9 15:55:31 UTC 2026 x86_64 User : dejavumk ( 1184) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /lib/python2.7/site-packages/sos/plugins/ |
Upload File : |
from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin
class Composer(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
"""Lorax Composer
"""
plugin_name = 'composer'
profiles = ('sysmgmt', 'virt', )
packages = ('composer-cli',)
def _get_entries(self, cmd):
entries = []
ent_file = self.collect_cmd_output(cmd)
if ent_file['status'] == 0:
for line in ent_file['output'].splitlines():
entries.append(line)
return entries
def setup(self):
self.add_copy_spec([
"/etc/lorax/composer.conf",
"/var/log/lorax-composer/composer.log",
"/var/log/lorax-composer/dnf.log",
"/var/log/lorax-composer/program.log",
"/var/log/lorax-composer/server.log",
])
blueprints = self._get_entries("composer-cli blueprints list")
for blueprint in blueprints:
self.add_cmd_output("composer-cli blueprints show %s" % blueprint)
sources = self._get_entries("composer-cli sources list")
for src in sources:
self.add_cmd_output("composer-cli sources info %s" % src)
# vim: set et ts=4 sw=4 :