Convert symlinks specified in pvs to actual path

This commit is contained in:
Rob White 2015-01-22 13:37:37 +11:00
parent 73bdc396a3
commit adb1f0a1c8

View file

@ -135,7 +135,9 @@ def main():
elif state == 'present':
module.fail_json(msg="No physical volumes given.")
# LVM always uses real paths not symlinks so replace symlinks with actual path
for idx, dev in enumerate(dev_list):
dev_list[idx] = os.path.realpath(dev)
if state=='present':
### check given devices