Fixing typo in regex escape. (#67236)
This commit is contained in:
parent
a86524b2bb
commit
8a2ac8f76a
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ EXAMPLES = r'''
|
|||
- name: Ensure the JBoss memory settings are exactly as needed
|
||||
lineinfile:
|
||||
path: /opt/jboss-as/bin/standalone.conf
|
||||
regexp: '^(.*)Xms(\\d+)m(.*)$'
|
||||
regexp: '^(.*)Xms(\d+)m(.*)$'
|
||||
line: '\1Xms${xms}m\3'
|
||||
backrefs: yes
|
||||
|
||||
|
|
Loading…
Reference in a new issue