From 512f3917fa830dd67e3a4596fcfb74d4e5517446 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Fri, 23 Sep 2016 14:31:06 -0700 Subject: Fix #3153 again (#4989) --- system/mount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/mount.py b/system/mount.py index b80e6bfc..df235e46 100644 --- a/system/mount.py +++ b/system/mount.py @@ -287,7 +287,7 @@ def mount(module, **kwargs): if get_platform().lower() == 'freebsd': cmd += ['-F', args['fstab']] - elif get_platform().lower() == 'linux': + elif get_platform().lower() == 'linux' and args['fstab'] != '/etc/fstab': cmd += ['-T', args['fstab']] cmd += [name] -- cgit v1.2.1