diff options
author | pcarrier <pcarrier@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2011-02-21 11:41:21 +0000 |
---|---|---|
committer | pcarrier <pcarrier@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2011-02-21 11:41:21 +0000 |
commit | ad21f71d36eecaae663ee62c06aeea61f4269732 (patch) | |
tree | 75837931df679364ee23699f32ca30b6088d178a | |
parent | 545319a5cae8e4cae55e1a0d493e4c04dae568db (diff) | |
download | sos-ad21f71d36eecaae663ee62c06aeea61f4269732.tar.gz |
[plugins] general: upstart /etc/event.d
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@1086 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rw-r--r-- | sos/plugins/general.py | 3 | ||||
-rw-r--r-- | sos/plugins/networking.py | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sos/plugins/general.py b/sos/plugins/general.py index fe006a77..52c671d7 100644 --- a/sos/plugins/general.py +++ b/sos/plugins/general.py @@ -27,7 +27,8 @@ class general(sos.plugintools.PluginBase): self.addCopySpecs([ "/etc/redhat-release", "/etc/fedora-release", - "/etc/init", + "/etc/init", # upstart + "/etc/event.d", # " "/etc/inittab", "/etc/sos.conf", "/etc/sysconfig", diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index fbe31f83..fbc8d67d 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -60,6 +60,7 @@ class networking(sos.plugintools.PluginBase): self.collectExtOutput("/bin/netstat -agn") self.collectExtOutput("/bin/netstat -neopa", root_symlink = "netstat") self.collectExtOutput("/sbin/ip route show table all") + self.collectExtOutput("/sbin/ip -6 route show table all") self.collectExtOutput("/sbin/ip link") self.collectExtOutput("/sbin/ip address") self.collectExtOutput("/sbin/ifenslave -a") |