mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-06 10:43:14 +00:00
Add support for setting fstab location on Linux too for mount (#3271)
Fix #3153
This commit is contained in:
committed by
Matt Clay
parent
441205feed
commit
1f8b2f3e6e
@@ -233,6 +233,9 @@ def mount(module, **kwargs):
|
||||
if get_platform().lower() == 'freebsd':
|
||||
cmd += [ '-F', args['fstab'], ]
|
||||
|
||||
if get_platform().lower() == 'linux':
|
||||
cmd += [ '-T', args['fstab'], ]
|
||||
|
||||
cmd += [ name, ]
|
||||
|
||||
rc, out, err = module.run_command(cmd)
|
||||
|
||||
Reference in New Issue
Block a user