From 6224ecfbad92d50da349d8c0bea5d0f8c2501a43 Mon Sep 17 00:00:00 2001 From: Azra Sulthana Date: Mon, 15 Jul 2019 06:28:17 +0000 Subject: [PATCH] removed crowd_install.yml --- roles/product_install/tasks/crowd_install.yml | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 roles/product_install/tasks/crowd_install.yml diff --git a/roles/product_install/tasks/crowd_install.yml b/roles/product_install/tasks/crowd_install.yml deleted file mode 100644 index 12a51c2..0000000 --- a/roles/product_install/tasks/crowd_install.yml +++ /dev/null @@ -1,41 +0,0 @@ -- debug: - msg: "atl_latest_version - {{atl_latest_version}}" - -- name: Fetch crowd installer - get_url: - url: "{{atl_crowd_download_url}}" - dest: "{{atl_installer_temp}}" - mode: 0755 - force: false - when: not atl_latest_version - -- name: Fetch latest crowd installer - get_url: - url: "{{ atl_crowd_latest_url }}" - dest: "{{atl_installer_temp}}" - mode: 0755 - force: false - when: atl_latest_version != "" - - -- name: locate installer - find: paths="{{ atl_installer_temp }}" patterns="*{{atl_product_edition}}*.tar.gz" - register: find_result - -- debug: msg = " {{find_result }}" - -- name: unarchive - become: true - unarchive: - src: "{{ item.path }}" - dest: "{{atl_product_installation_versioned}}" - with_items: "{{ find_result.files }}" - - -- name: Symlink the installed version to current - file: - src: "{{ atl_product_installation_versioned }}/atlassian-crowd-{{atl_product_version}}" - dest: "{{ atl_product_installation_current }}" - state: link - force: true -