Fixing typo in regex escape. (#67236)

pull/67321/head
Milutin Jovanović 5 years ago committed by GitHub
parent a86524b2bb
commit 8a2ac8f76a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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