Convert symlinks specified in pvs to actual path
This commit is contained in:
parent
73bdc396a3
commit
adb1f0a1c8
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue