Commit 8a07d98f by Michael DeHaan

Merge pull request #6175 from AdmiralNemo/fix-filesystem

filesystem: Ignore blkid cache
parents 8920990d 467914e3
......@@ -79,7 +79,7 @@ def main():
cmd = module.get_bin_path('blkid', required=True)
rc,raw_fs,err = module.run_command("%s -o value -s TYPE %s" % (cmd, dev))
rc,raw_fs,err = module.run_command("%s -c /dev/null -o value -s TYPE %s" % (cmd, dev))
fs = raw_fs.strip()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment