updated download
diff --git a/tasks/main.yml b/tasks/main.yml
index 0c39669..68787dc 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -1,23 +1,12 @@
 ---
 # tasks file for opdk-setup-local-repository
-- block:
-  - name: Download archive
-    fetch:
-      src: '{{ archive_path }}'
-      dest: '{{ archive_name }}'
-      flat: yes
-    register: result
+- name: Download archive
+  fetch:
+    src: '{{ archive_path }}'
+    dest: '{{ archive_name }}'
+    flat: yes
+  register: result
 
-  rescue:
-  - name: First scp download attempt failed, trying with rsync
-    synchronize:
-      mode: pull
-      src: '{{ archive_path }}'
-      dest: '{{ archive_name }}'
-    register: result
-
-  always:
-
-  - name: Download archive status report
-    debug:
-      var: result
+- name: Download archive status report
+  debug:
+    var: result