From 9436d013d40c0c3b1604d44661c63c3a62bc8551 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 28 Sep 2016 11:12:00 -0700 Subject: [PATCH] Fix mount default options -- should be defaults, not default --- lib/ansible/modules/system/mount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/mount.py b/lib/ansible/modules/system/mount.py index c5d7411ac8b..90bf6303fc0 100644 --- a/lib/ansible/modules/system/mount.py +++ b/lib/ansible/modules/system/mount.py @@ -544,7 +544,7 @@ def main(): else: args = dict( name=module.params['name'], - opts='default', + opts='defaults', dump='0', passno='0', fstab='/etc/fstab'