diff options
author | sconklin <sconklin@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-04-24 18:31:26 +0000 |
---|---|---|
committer | sconklin <sconklin@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2007-04-24 18:31:26 +0000 |
commit | 5346ea230c997976299db984d19d180784921358 (patch) | |
tree | 8b1636b42b32a712e7fb97e5851218b4945bfc33 | |
parent | c3012e8c9692f39039df9e36039873773cd3188a (diff) | |
download | sos-5346ea230c997976299db984d19d180784921358.tar.gz |
Forced the file generated by traceroute to not end in .com
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@129 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rw-r--r-- | src/lib/sos/plugins/networking.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/sos/plugins/networking.py b/src/lib/sos/plugins/networking.py index 8158bd79..54a41655 100644 --- a/src/lib/sos/plugins/networking.py +++ b/src/lib/sos/plugins/networking.py @@ -68,7 +68,8 @@ class networking(sos.plugintools.PluginBase): for eth in self.get_interface_name(ifconfigFile): self.collectExtOutput("/sbin/ethtool "+eth) if self.isOptionEnabled("traceroute"): - self.collectExtOutput("/bin/traceroute rhn.redhat.com") + # The semicolon prevents the browser from thinking this is a link when viewing the report + self.collectExtOutput("/bin/traceroute rhn.redhat.com;") return |