diff --git a/system/filesystem.py b/system/filesystem.py index b44168a0e06..8b19c5bc1dd 100644 --- a/system/filesystem.py +++ b/system/filesystem.py @@ -140,7 +140,7 @@ def main(): rc,raw_fs,err = module.run_command("%s -c /dev/null -o value -s TYPE %s" % (cmd, dev)) fs = raw_fs.strip() - if fs == fstype and resizefs == False: + if fs == fstype and resizefs == False and not force: module.exit_json(changed=False) elif fs == fstype and resizefs == True: cmd = module.get_bin_path(growcmd, required=True)