mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
lineinfile: add regex as an alias for regexp (#20454)
the param is called regexp, but a lot of people spell it regex add an alias to help them
This commit is contained in:
parent
27b85e732d
commit
e601caf873
1 changed files with 2 additions and 1 deletions
|
@ -40,6 +40,7 @@ options:
|
||||||
aliases: [ dest, destfile, name ]
|
aliases: [ dest, destfile, name ]
|
||||||
required: true
|
required: true
|
||||||
regexp:
|
regexp:
|
||||||
|
aliases: [ 'regex' ]
|
||||||
description:
|
description:
|
||||||
- The regular expression to look for in every line of the file. For
|
- The regular expression to look for in every line of the file. For
|
||||||
C(state=present), the pattern to replace if found. Only the last line
|
C(state=present), the pattern to replace if found. Only the last line
|
||||||
|
@ -459,7 +460,7 @@ def main():
|
||||||
argument_spec=dict(
|
argument_spec=dict(
|
||||||
path=dict(type='path', required=True, aliases=['dest', 'destfile', 'name']),
|
path=dict(type='path', required=True, aliases=['dest', 'destfile', 'name']),
|
||||||
state=dict(type='str', default='present', choices=['absent', 'present']),
|
state=dict(type='str', default='present', choices=['absent', 'present']),
|
||||||
regexp=dict(type='str'),
|
regexp=dict(type='str', aliases=['regex']),
|
||||||
line=dict(type='str', aliases=['value']),
|
line=dict(type='str', aliases=['value']),
|
||||||
insertafter=dict(type='str'),
|
insertafter=dict(type='str'),
|
||||||
insertbefore=dict(type='str'),
|
insertbefore=dict(type='str'),
|
||||||
|
|
Loading…
Reference in a new issue