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
pull/41756/head
Evgeni Golov 6 years ago committed by Sam Doran
parent 27b85e732d
commit e601caf873

@ -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…
Cancel
Save