On some systems the hostname is a fully-qualified domain name and
(even when not a fqdn) may inadvertantly allow the cluster to be
identified.
Signed-off-by: Sage Weil <sage@redhat.com>
(cherry picked from commit
4510f336562ede84a1e6e135bb3a152ab9b34543)
errno, crashinfo, err = self.remote('crash', 'do_info', cmd, '')
if errno:
continue
- crashlist.append(json.loads(crashinfo))
+ c = json.loads(crashinfo)
+ del c['utsname_hostname']
+ crashlist.append(c)
return crashlist
def compile_report(self):