1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Clarification on how to use insertafter with a regex.

This commit is contained in:
Yves Dorfsman 2013-02-06 01:25:30 -07:00
parent 924e9ffe8b
commit 05a3876dc9

View file

@ -64,7 +64,7 @@ options:
after the specified regular expression. Two special values are after the specified regular expression. Two special values are
available; C(BOF) for inserting the line at the beginning of the available; C(BOF) for inserting the line at the beginning of the
file, and C(EOF) for inserting the line at the end of the file. file, and C(EOF) for inserting the line at the end of the file.
choices: [ BOF, EOF ] choices: [ BOF, EOF, *regex* ]
default: EOF default: EOF
create: create:
required: false required: false
@ -83,6 +83,7 @@ options:
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=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"'
''' '''
def present(module, dest, regexp, line, insertafter, create, backup): def present(module, dest, regexp, line, insertafter, create, backup):