From 5346ea230c997976299db984d19d180784921358 Mon Sep 17 00:00:00 2001 From: sconklin Date: Tue, 24 Apr 2007 18:31:26 +0000 Subject: 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 --- src/lib/sos/plugins/networking.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit