%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.102 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/proc/self/root/usr/share/sosreport/sos/plugins/ |
Upload File : |
# Copyright (C) 2018 Mark Michelson <mmichels@redhat.com>
# 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.
import os
from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin
pidfile = 'ovn-controller.pid'
pid_paths = [
'/var/lib/openvswitch/ovn',
'/usr/local/var/run/openvswitch',
'/run/openvswitch'
]
class OVNHost(Plugin):
""" OVN Controller
"""
plugin_name = "ovn_host"
profiles = ('network', 'virt')
def setup(self):
if os.environ.get('OVS_RUNDIR'):
pid_paths.append(os.environ.get('OVS_RUNDIR'))
self.add_copy_spec([os.path.join(pp, pidfile) for pp in pid_paths])
self.add_copy_spec('/etc/sysconfig/ovn-controller')
self.add_cmd_output([
'ovs-ofctl -O OpenFlow13 dump-flows br-int',
'ovs-vsctl list-br',
'ovs-vsctl list Open_vSwitch',
])
self.add_journal(units="ovn-controller")
def check_enabled(self):
return (any([os.path.isfile(
os.path.join(pp, pidfile)) for pp in pid_paths]) or
super(OVNHost, self).check_enabled())
class RedHatOVNHost(OVNHost, RedHatPlugin):
packages = ('openvswitch-ovn-host', 'ovn2.*-host', )
class DebianOVNHost(OVNHost, DebianPlugin, UbuntuPlugin):
packages = ('ovn-host', )