mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-20 15:51:05 +00:00
Fixes bind mounts
Fixed tab's and spaces, or so I think I did Fixed tabs and spaces for real this time
This commit is contained in:
committed by
Matt Clay
parent
6be46cb2e3
commit
aef138107c
@@ -320,6 +320,17 @@ def main():
|
||||
if os.path.ismount(name):
|
||||
if changed:
|
||||
res,msg = mount(module, **args)
|
||||
elif "bind" in args['opts']:
|
||||
changed = True
|
||||
cmd = 'mount -l'
|
||||
rc, out, err = module.run_command(cmd)
|
||||
allmounts = out.split('\n')
|
||||
for mounts in allmounts[:-1]:
|
||||
arguments = mounts.split()
|
||||
if arguments[0] == args['src'] and arguments[2] == args['name'] and arguments[4] == args['fstype']:
|
||||
changed = False
|
||||
if changed:
|
||||
res,msg = mount(module, **args)
|
||||
else:
|
||||
changed = True
|
||||
res,msg = mount(module, **args)
|
||||
|
||||
Reference in New Issue
Block a user