| Server IP : 118.27.122.120 / Your IP : 216.73.216.51 Web Server : Apache System : Linux web0216.sh.tyo1 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : r4834334 ( 11094) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/proc/thread-self/root/usr/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.get_cmd_output_now(cmd)
if ent_file:
with open(ent_file, "r") as ents:
for line in ents.read().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 :