Merge pull request #217 from wimnat/issue-197

Convert symlinks specified in pvs to actual path
This commit is contained in:
Brian Coca 2015-03-31 23:59:16 -04:00
commit 21fce8ac73

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