none kbd-scrolllock [kbd-numlock] kbd-capslock kbd-kanalock kbd-shiftlock kbd-altgrlock kbd-ctrllock kbd-altlock kbd-shiftllock kbd-shiftrlock kbd-ctrlllock kbd-ctrlrlock 
     IÄ×734ĮÕ Ž    I# This file is part of the sos project: https://github.com/sosreport/sos
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions of
# version 2 of the GNU General Public License.
#
# See the LICENSE file in the source distribution for further information.

from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin


class Vulkan(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
    """Vulkan
    """

    plugin_name = 'vulkan'
    profiles = ('hardware', 'desktop', 'gpu')
    files = ('/usr/bin/vulkaninfo',)

    def setup(self):
        self.add_cmd_output([
            "vulkaninfo",
        ])

# vim: set et ts=4 sw=4 :
     KÄ×\ĮÕ     K# This file is part of the sos project: https://github.com/sosreport/sos
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions of
# version 2 of the GNU General Public License.
#
# See the LICENSE file in the source distribution for further information.

from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin


class System(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
    """core system information
    """

    plugin_name = "system"
    profiles = ('system', 'kernel')
    verify_packages = ('glibc', 'initscripts', 'zlib')

    def setup(self):
        self.add_copy_spec([
            "/proc/sys",
            "/etc/sysconfig",
            "/etc/default",
            "/etc/environment",
        ])

        # FIXME: provide a a long-term solution for #1299
        self.add_forbidden_path([
            "/proc/sys/net/ipv4/route/flush",
            "/proc/sys/net/ipv6/route/flush",
            "/proc/sys/net/ipv6/neigh/*/retrans_time",
            "/proc/sys/net/ipv6/neigh/*/base_reachable_time"
        ])


# vim: set et ts=4 sw=4 :
  "   MŲ×saßi~e¶„8 _ø&®4%1hßÖ F    Mó
)rjc           @   s<   d  d l  m Z m Z m Z d e e e f d     YZ d S(   i’’’’(   t   Plugint   RedHatPlugint   UbuntuPlugint	   Librariesc           B   s8   e  Z d  Z d Z d Z d d d e f g Z d   Z RS(   s   Dynamic shared libraries
    t	   librariest   systemt	   ldconfigvs   collect verbose ldconfig outputt   slowc         C   s  |  j  d d g  |  j d  r2 |  j d  n  |  j d d d g  |  j d  } | d	 d
 k rt   } xc | d j   D]Q } | j d d  } t |  d k r± q n  | j	 | d j
 d d  d
  q W| r|  j d d j |  d d qn  d  S(   Ns   /etc/ld.so.confs   /etc/ld.so.conf.dR   s   ldconfig -v -N -Xt   PATHt   LD_LIBRARY_PATHt
   LD_PRELOADs   ldconfig -p -N -Xt   statusi    t   outputs    => i   i   t   /s   ls -lanH %st    t   suggest_filenamet   ld_so_cache(   t   add_copy_spect
   get_optiont   add_cmd_outputt   add_env_vart   collect_cmd_outputt   sett
   splitlinest   splitt   lent   addt   rsplitt   join(   t   selft   ldconfigt   dirst   lt   s(    (    s9   /usr/lib/python2.7/site-packages/sos/plugins/libraries.pyt   setup   s$    
	%(   s   system(   t   __name__t
   __module__t   __doc__t   plugin_namet   profilest   Falset   option_listR"   (    (    (    s9   /usr/lib/python2.7/site-packages/sos/plugins/libraries.pyR      s
   N(   t   sos.pluginsR    R   R   R   (    (    (    s9   /usr/lib/python2.7/site-packages/sos/plugins/libraries.pyt   <module>	   s     
   O355Ó¾Ö c    O<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while tryi