Skip to content

Commit

Permalink
fix var escape
Browse files Browse the repository at this point in the history
  • Loading branch information
loraine-gueguen committed Aug 5, 2024
1 parent bbb2524 commit df941c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@
marker: "<!-- {mark} ANSIBLE MANAGED BLOCK - TOP -->"
backup: yes
with_items:
- sequenceserver_file_to_modify_for_custom_web_page_first
- sequenceserver_file_to_modify_for_custom_web_page_second
- "{{ sequenceserver_file_to_modify_for_custom_web_page_first }}"
- "{{ sequenceserver_file_to_modify_for_custom_web_page_second }}"
when: top_web_page_html_path.stat.exists and sequenceserver_version is defined and sequenceserver_version != "2.2.0" and sequenceserver_version != "2.0.0.rc8"
notify: Restart all sequenceserver services

Expand All @@ -195,8 +195,8 @@
marker: "<!-- {mark} ANSIBLE MANAGED BLOCK - BOTTOM -->"
backup: yes
with_items:
- sequenceserver_file_to_modify_for_custom_web_page_first
- sequenceserver_file_to_modify_for_custom_web_page_second
- "{{ sequenceserver_file_to_modify_for_custom_web_page_first }}"
- "{{ sequenceserver_file_to_modify_for_custom_web_page_second }}"
when: bottom_web_page_html_path.stat.exists and sequenceserver_version is defined and sequenceserver_version != "2.2.0" and sequenceserver_version != "2.0.0.rc8"
notify: Restart all sequenceserver services

Expand Down

0 comments on commit df941c1

Please sign in to comment.