From af435cf7827ac733789afba6bd0acaa68f0bfc69 Mon Sep 17 00:00:00 2001 From: Andy Rajagopalan Date: Thu, 31 Oct 2019 11:35:03 -0700 Subject: [PATCH] moved copy task to ln 18 --- roles/bitbucket_config/tasks/main.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/roles/bitbucket_config/tasks/main.yml b/roles/bitbucket_config/tasks/main.yml index 2bc0452..14c4f73 100644 --- a/roles/bitbucket_config/tasks/main.yml +++ b/roles/bitbucket_config/tasks/main.yml @@ -15,6 +15,11 @@ owner: "{{ atl_product_user }}" group: "{{ atl_product_user }}" +- name: Copy Bitbucket dataset from s3 + get_url: + url: "{{ atl_bitbucket_dataset_url }}" + dest: /media/atl/bitbucket/shared/data/migration/import/ + - name: Remove write permissions from installation directory file: path: "{{ atl_product_installation_versioned }}" @@ -24,7 +29,5 @@ recurse: true changed_when: false # For Molecule idempotence check -- name: Copy Bitbucket dataset from s3 - get_url: - url: "{{ atl_bitbucket_dataset_url }}" - dest: /media/atl/bitbucket/shared/data/migration/import/ \ No newline at end of file + +