From 37ef7d82c4f3340f3d5106449020c652129afe81 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Sat, 23 Feb 2013 12:03:59 +0100 Subject: [PATCH] Fix version_added for insertbefore in lineinfile --- lineinfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lineinfile b/lineinfile index 89cc460095a..7c50829a613 100644 --- a/lineinfile +++ b/lineinfile @@ -66,7 +66,7 @@ options: choices: [ 'EOF', '*regex*' ] insertbefore: required: false - versionadded: 1.1 + version_added: 1.1 description: - Used with C(state=present). If specified, the line will be inserted before the specified regular expression. A value is available; @@ -209,8 +209,8 @@ def main(): create=dict(default=False, choices=BOOLEANS), backup=dict(default=False, choices=BOOLEANS), ), - mutually_exclusive = [['insertbefore', 'insertafter']], - supports_check_mode = True + mutually_exclusive = [['insertbefore', 'insertafter']], + supports_check_mode = True ) params = module.params