Add versionadded element to new option, fix YAML formatting
This commit is contained in:
parent
33ed91cd13
commit
d96d16c0dc
1 changed files with 5 additions and 3 deletions
|
@ -63,15 +63,16 @@ options:
|
||||||
- Used with C(state=present). If specified, the line will be inserted
|
- Used with C(state=present). If specified, the line will be inserted
|
||||||
after the specified regular expression. A special value is
|
after the specified regular expression. A special value is
|
||||||
available; C(EOF) for inserting the line at the end of the file.
|
available; C(EOF) for inserting the line at the end of the file.
|
||||||
choices: [ EOF, *regex* ]
|
choices: [ 'EOF', '*regex*' ]
|
||||||
insertbefore:
|
insertbefore:
|
||||||
required: false
|
required: false
|
||||||
|
versionadded: 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;
|
||||||
C(BOF) for inserting the line at the beginning of the
|
C(BOF) for inserting the line at the beginning of the
|
||||||
file.
|
file.
|
||||||
choices: [ BOF, *regex* ]
|
choices: [ 'BOF', '*regex*' ]
|
||||||
create:
|
create:
|
||||||
required: false
|
required: false
|
||||||
choices: [ yes, no ]
|
choices: [ yes, no ]
|
||||||
|
@ -88,12 +89,13 @@ options:
|
||||||
get the original file back if you somehow clobbered it incorrectly.
|
get the original file back if you somehow clobbered it incorrectly.
|
||||||
examples:
|
examples:
|
||||||
- code: 'lineinfile: dest=/etc/selinux/config regexp=^SELINUX= line=SELINUX=disabled'
|
- code: 'lineinfile: dest=/etc/selinux/config regexp=^SELINUX= line=SELINUX=disabled'
|
||||||
- code: "lineinfile: \\\"dest=/etc/sudoers state=present regexp='^%wheel' line ='%wheel ALL=(ALL) NOPASSWD: ALL'\\\""
|
|
||||||
- code: 'lineinfile: dest=/etc/sudoers state=absent regexp="^%wheel"'
|
- code: 'lineinfile: dest=/etc/sudoers state=absent regexp="^%wheel"'
|
||||||
- code: 'lineinfile: dest=/etc/httpd/conf/httpd.conf regexp="^Listen " insertafter="^#Listen " line="Listen 8080"'
|
- code: 'lineinfile: dest=/etc/httpd/conf/httpd.conf regexp="^Listen " insertafter="^#Listen " line="Listen 8080"'
|
||||||
- code: 'lineinfile: dest=/etc/services regexp="^# port for http" insertbefore="^www.*80/tcp" line="# port for http by default"'
|
- code: 'lineinfile: dest=/etc/services regexp="^# port for http" insertbefore="^www.*80/tcp" line="# port for http by default"'
|
||||||
|
- code: "lineinfile: \\\"dest=/etc/sudoers state=present regexp='^%wheel' line ='%wheel ALL=(ALL) NOPASSWD: ALL'\\\""
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
def present(module, dest, regexp, line, insertafter, insertbefore, create, backup):
|
def present(module, dest, regexp, line, insertafter, insertbefore, create, backup):
|
||||||
|
|
||||||
if os.path.isdir(dest):
|
if os.path.isdir(dest):
|
||||||
|
|
Loading…
Add table
Reference in a new issue