Add support for setting fstab location on Linux too for mount (#3271)

Fix #3153
This commit is contained in:
Michael Scherer 2016-08-23 17:38:59 +02:00 committed by Matt Clay
parent 441205feed
commit 1f8b2f3e6e

View file

@ -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)