Devices in the current_devs list must also be converted to absolute device paths so comparison with dev_list works
This commit is contained in:
parent
1717041118
commit
2cc53281d8
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ def main():
|
||||||
module.fail_json(msg="Refuse to remove non-empty volume group %s without force=yes"%(vg))
|
module.fail_json(msg="Refuse to remove non-empty volume group %s without force=yes"%(vg))
|
||||||
|
|
||||||
### resize VG
|
### resize VG
|
||||||
current_devs = [ pv['name'] for pv in pvs if pv['vg_name'] == vg ]
|
current_devs = [ os.path.realpath(pv['name']) for pv in pvs if pv['vg_name'] == vg ]
|
||||||
devs_to_remove = list(set(current_devs) - set(dev_list))
|
devs_to_remove = list(set(current_devs) - set(dev_list))
|
||||||
devs_to_add = list(set(dev_list) - set(current_devs))
|
devs_to_add = list(set(dev_list) - set(current_devs))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue