diff --git a/smartgears/dataminer_app/defaults/main.yml b/smartgears/dataminer_app/defaults/main.yml
index 19f9b11..853c22c 100644
--- a/smartgears/dataminer_app/defaults/main.yml
+++ b/smartgears/dataminer_app/defaults/main.yml
@@ -2,6 +2,7 @@
 dataminer_app_install: False
 dataminer_app_upgrade: False
 dataminer_algorithms_installer: True
+dataminer_algorithms_updater: True
 
 # ZIP file
 dataminer_product: prod
diff --git a/smartgears/dataminer_app/tasks/dataminer-algorithms-installer.yml b/smartgears/dataminer_app/tasks/dataminer-algorithms-installer.yml
index d05d980..bc83dd2 100644
--- a/smartgears/dataminer_app/tasks/dataminer-algorithms-installer.yml
+++ b/smartgears/dataminer_app/tasks/dataminer-algorithms-installer.yml
@@ -46,9 +46,14 @@
 
   - name: Unarchive the algorithms installer
     unarchive: copy=no src={{ smartgears_downloads_dir }}/{{ dataminer_algorithms_file }} dest={{ smartgears_user_home }} creates='{{ smartgears_user_home }}/algorithmInstaller/addAlgorithm.sh'
-    notify: Restart smartgears
     tags: [ 'tomcat', 'dataminer', 'wps', 'dataminer_algorithms', 'dataminer_algorithms_installer' ]
 
+  become: True
+  become_user: '{{ smartgears_user }}'
+  when: dataminer_algorithms_installer
+  tags: [ 'tomcat', 'dataminer', 'wps', 'dataminer_algorithms', 'dataminer_algorithms_installer' ]
+  
+- block:
   - name: Create a directory where to install the algorithms updater logs and data
     file: path={{ smartgears_user_home }}/wps_algorithms_install_log state=directory
     tags: [ 'tomcat', 'dataminer', 'wps', 'dataminer_algorithms', 'dataminer_algorithms_script' ]
@@ -64,7 +69,7 @@
 
   become: True
   become_user: '{{ smartgears_user }}'
-  when: dataminer_algorithms_installer
+  when: dataminer_algorithms_updater
   tags: [ 'tomcat', 'dataminer', 'wps', 'dataminer_algorithms', 'dataminer_algorithms_installer' ]
   
 - block:
@@ -74,7 +79,7 @@
   
   become: True
   become_user: '{{ smartgears_user }}'
-  when: not dataminer_algorithms_installer
+  when: not dataminer_algorithms_updater
   tags: [ 'tomcat', 'dataminer', 'wps', 'dataminer_algorithms', 'dataminer_algorithms_installer' ]
     
   
\ No newline at end of file