diff --git a/library/system/setup b/library/system/setup index 7b0fd70e80b..353cf6f6d39 100755 --- a/library/system/setup +++ b/library/system/setup @@ -632,7 +632,13 @@ class LinuxHardware(Hardware): (rc, out, err) = module.run_command('%s -s %s' % (dmi_bin, v)) if rc == 0: # Strip out commented lines (specific dmidecode output) - self.facts[k] = ''.join([ line for line in out.split('\n') if not line.startswith('#') ]) + thisvalue = ''.join([ line for line in out.split('\n') if not line.startswith('#') ]) + try: + json.dumps(thisvalue) + except UnicodeDecodeError: + thisvalue = "NA" + + self.facts[k] = thisvalue else: self.facts[k] = 'NA' else: