Skip to content

Commit

Permalink
Merge pull request ansible#8270 from berenddeboer/mount-fstab
Browse files Browse the repository at this point in the history
Default for fstab missing, causing KeyError: 'fstab'
  • Loading branch information
mpdehaan committed Jul 24, 2014
2 parents 7348b58 + 869cc79 commit 2e2a1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/system/mount
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def main():
dump = dict(default=None),
src = dict(required=True),
fstype = dict(required=True),
fstab = dict(default=None)
fstab = dict(default='/etc/fstab')
)
)

Expand Down

0 comments on commit 2e2a1d4

Please sign in to comment.