Use -f when pvcreate to avoid interactive input. Fix https://github.com/ansible/ansible-modules-extras/issues/1504
This commit is contained in:
parent
801e895f62
commit
bf5fbfe2a7
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue