Skip to content

Commit

Permalink
changed to configuration flow
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-inqwise committed Jan 6, 2025
1 parent 7a0f66b commit bfb35ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions roles/opinion/tasks/jetty_installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
stat:
path: "{{ jetty_base_path }}"
register: jetty
tags: installation
tags: configuration

- name: download jetty from s3
command: "aws s3 cp {{ jetty_remote_path }}/ {{ jetty_base_path }} --recursive --region {{ ec2_instance.region }}"
command: "aws s3 cp {{ jetty_remote_path }}/ {{ jetty_base_path }} --recursive"
when: jetty.stat.exists == False
tags: installation
tags: configuration

- name: create resource base folder in jetty
file:
Expand All @@ -28,7 +28,7 @@
- "{{ log4j_api_url }}"
- "{{ log4j_slf4j_impl_url }}"
- "{{ log4j_core_url }}"
tags: installation
tags: configuration

- name: Copy log4j2 to jetty
template:
Expand Down

0 comments on commit bfb35ac

Please sign in to comment.