summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--system/mount.py2
1 files changed, 1 insertions, 1 deletions
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]