Fixing typo in regex escape. (#67236)

This commit is contained in:
Milutin Jovanović 2020-02-11 12:23:58 -05:00 committed by GitHub
parent a86524b2bb
commit 8a2ac8f76a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -188,7 +188,7 @@ EXAMPLES = r'''
- name: Ensure the JBoss memory settings are exactly as needed - name: Ensure the JBoss memory settings are exactly as needed
lineinfile: lineinfile:
path: /opt/jboss-as/bin/standalone.conf path: /opt/jboss-as/bin/standalone.conf
regexp: '^(.*)Xms(\\d+)m(.*)$' regexp: '^(.*)Xms(\d+)m(.*)$'
line: '\1Xms${xms}m\3' line: '\1Xms${xms}m\3'
backrefs: yes backrefs: yes