diff --git a/leap-upgrades/re-deploy.sh b/leap-upgrades/re-deploy.sh
index 9593b5f8..cd0b84cd 100755
--- a/leap-upgrades/re-deploy.sh
+++ b/leap-upgrades/re-deploy.sh
@@ -89,5 +89,10 @@ RUN_TASKS+=("os-magnum-install.yml")
 RUN_TASKS+=("os-sahara-install.yml")
 
 RUN_TASKS+=("${UPGRADE_UTILS}/post-redeploy-cleanup.yml")
+# Loads a shell script that can be used to modify
+# the RUN_TASKS behavior.
+if [ ! -z ${REDEPLOY_EXTRA_SCRIPT} ]; then
+  source ${REDEPLOY_EXTRA_SCRIPT}
+fi
 run_items "/opt/openstack-ansible"
 ### Run the redeploy tasks
diff --git a/leap-upgrades/run-stages.sh b/leap-upgrades/run-stages.sh
index c3679113..834f3656 100755
--- a/leap-upgrades/run-stages.sh
+++ b/leap-upgrades/run-stages.sh
@@ -31,6 +31,6 @@ source migrations.sh
 source re-deploy.sh
 
 echo -e "\n====================================================="
-notice "All Leaps successful."
+notice "All OpenStack-Ansible Leaps successful."
 echo -e "=====================================================\n"
 exit 0