Allow recreation of same FS with force=yes
This commit is contained in:
parent
58f3518666
commit
23675c3f8b
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ def main():
|
||||||
rc,raw_fs,err = module.run_command("%s -c /dev/null -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()
|
fs = raw_fs.strip()
|
||||||
|
|
||||||
if fs == fstype and resizefs == False:
|
if fs == fstype and resizefs == False and not force:
|
||||||
module.exit_json(changed=False)
|
module.exit_json(changed=False)
|
||||||
elif fs == fstype and resizefs == True:
|
elif fs == fstype and resizefs == True:
|
||||||
# Get dev and fs size and compare
|
# Get dev and fs size and compare
|
||||||
|
|
Loading…
Reference in a new issue