From bfb35acd3cac64d31135dd3e80e2493f8a287dbe Mon Sep 17 00:00:00 2001 From: alex misyuk Date: Mon, 6 Jan 2025 09:27:39 +0200 Subject: [PATCH] changed to configuration flow --- roles/opinion/tasks/jetty_installation.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/opinion/tasks/jetty_installation.yml b/roles/opinion/tasks/jetty_installation.yml index a9caa90..ae3264c 100644 --- a/roles/opinion/tasks/jetty_installation.yml +++ b/roles/opinion/tasks/jetty_installation.yml @@ -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: @@ -28,7 +28,7 @@ - "{{ log4j_api_url }}" - "{{ log4j_slf4j_impl_url }}" - "{{ log4j_core_url }}" - tags: installation + tags: configuration - name: Copy log4j2 to jetty template: