diff options
-rw-r--r-- | sos/plugins/openvswitch.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py index 385a5c30..dc543606 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -40,7 +40,9 @@ class OpenVSwitch(Plugin): # to the Open vSwitch server, avoiding hangs when running sos. "ovs-vsctl -t 5 show", # Gather the database. - "ovsdb-client -f list dump" + "ovsdb-client -f list dump", + # List the contents of runtime directory + "ls -laZ /var/run/openvswitch" ]) # Gather additional output for each OVS bridge on the host. |