diff --git a/ansible/roles/sunbird-auth-deploy/tasks/custom.yml b/ansible/roles/sunbird-auth-deploy/tasks/custom.yml
index 3a0e310e70022a82e3d14c93fd2c5e2a2572637e..9a5f580fe6dbbd0d1f5f46d062502450a484fe63 100644
--- a/ansible/roles/sunbird-auth-deploy/tasks/custom.yml
+++ b/ansible/roles/sunbird-auth-deploy/tasks/custom.yml
@@ -5,31 +5,40 @@
   with_items:
     - python-pip
     - python-setuptools
+  run_once: true
 
 - name: Copying python libraries
   copy: src={{ role_path }}/files/python-keycloak-0.12.0 dest=/tmp/
+  run_once: true
 
 - name: Initialize python library to run keycloak paython script
   shell: cd /tmp/python-keycloak-0.12.0 && python setup.py install
+  run_once: true
 
 - name: Save keycloak vars to json
   template: src="keycloak-bootstrap.conf.j2" dest="/tmp/keycloak-bootstrap.conf.json" mode="0644"
+  run_once: true
 
 - name: Copy realm json file to tmp location
   template: src="keycloak-realm.j2" dest="/tmp/keycloak-realm.json" mode="0644"
+  run_once: true
 
 - name: Copy clients file to tmp location
   template: src="clients.j2" dest="/tmp/clients.json" mode="0644"
+  run_once: true
 
 - name: Copy user manager roles file to tmp location
   copy: src="files/python-keycloak-0.12.0/roles.json" dest="/tmp/roles.json" mode="0644"
+  run_once: true
 
 - name: Copy the keycloak paython script
   copy:  src={{ role_path }}/files/python-keycloak-0.12.0/keycloak dest=/tmp
+  run_once: true
 
 - name: Run the keycloak paython script
   shell:  cd /tmp/keycloak/ && python keycloak_patch.py /tmp/keycloak-bootstrap.conf.json
   register: out
   until: '"404" not in out.stderr'
   retries: 2
-  delay: 10
\ No newline at end of file
+  delay: 10
+  run_once: true