Use -f when pvcreate to avoid interactive input.

Fix https://github.com/ansible/ansible-modules-extras/issues/1504
reviewable/pr18780/r1
Yannig Perré 9 years ago
parent 90db7af7a7
commit c276d9f621

@ -183,7 +183,7 @@ def main():
### create PV
pvcreate_cmd = module.get_bin_path('pvcreate', True)
for current_dev in dev_list:
rc,_,err = module.run_command("%s %s" % (pvcreate_cmd,current_dev))
rc,_,err = module.run_command("%s -f %s" % (pvcreate_cmd,current_dev))
if rc == 0:
changed = True
else:
@ -224,7 +224,7 @@ def main():
### create PV
pvcreate_cmd = module.get_bin_path('pvcreate', True)
for current_dev in devs_to_add:
rc,_,err = module.run_command("%s %s" % (pvcreate_cmd, current_dev))
rc,_,err = module.run_command("%s -f %s" % (pvcreate_cmd, current_dev))
if rc == 0:
changed = True
else:

Loading…
Cancel
Save