Fix version_added for insertbefore in lineinfile

parent 333b6bba
...@@ -66,7 +66,7 @@ options: ...@@ -66,7 +66,7 @@ options:
choices: [ 'EOF', '*regex*' ] choices: [ 'EOF', '*regex*' ]
insertbefore: insertbefore:
required: false required: false
versionadded: 1.1 version_added: 1.1
description: description:
- Used with C(state=present). If specified, the line will be inserted - Used with C(state=present). If specified, the line will be inserted
before the specified regular expression. A value is available; before the specified regular expression. A value is available;
...@@ -209,8 +209,8 @@ def main(): ...@@ -209,8 +209,8 @@ def main():
create=dict(default=False, choices=BOOLEANS), create=dict(default=False, choices=BOOLEANS),
backup=dict(default=False, choices=BOOLEANS), backup=dict(default=False, choices=BOOLEANS),
), ),
mutually_exclusive = [['insertbefore', 'insertafter']], mutually_exclusive = [['insertbefore', 'insertafter']],
supports_check_mode = True supports_check_mode = True
) )
params = module.params params = module.params
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment