Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
Fix other possible instances of shell globbing in cat commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Lavine committed Mar 20, 2018
1 parent e498f0c commit bc113be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/jboss_eap/tasks/main.yml
Expand Up @@ -39,7 +39,7 @@
when: '"jboss.eap.eap-home" in facts_to_collect or "jboss.fuse.fuse-on-eap" in facts_to_collect or "jboss.fuse.summary" in facts_to_collect'

- name: get version.txt from EAP_HOME candidates
raw: cat "{{ item }}"/version.txt
raw: cat '{{ item }}/version.txt'
register: eap_home_candidates_version_txt
ignore_errors: yes
with_items: "{{ eap_home_candidates }}"
Expand All @@ -55,7 +55,7 @@
when: '"jboss.fuse.fuse-on-eap" in facts_to_collect or "jboss.fuse.summary" in facts_to_collect'

- name: check JBoss layers.conf
raw: cat "{{ item }}"/modules/layers.conf
raw: cat '{{ item }}/modules/layers.conf'
register: eap_home_candidates_layers_conf
ignore_errors: yes
with_items: "{{ eap_home_candidates }}"
Expand Down

0 comments on commit bc113be

Please sign in to comment.