diff --git a/slapos/recipe/erp5_bootstrap/template/erp5_bootstrap.in b/slapos/recipe/erp5_bootstrap/template/erp5_bootstrap.in
index ecbad4fc5d729b9e5a2c83a5b0eb0898770d44e0..645a4926a8676097b6af99dd11840d51e530c3df 100644
--- a/slapos/recipe/erp5_bootstrap/template/erp5_bootstrap.in
+++ b/slapos/recipe/erp5_bootstrap/template/erp5_bootstrap.in
@@ -92,6 +92,7 @@ if scalability:
   
   # Fix site consistency
   if not testIfExist("/%%s/portal_configurator/" %%site_id):
+    print "Going to fix site consistency..."
     zope_connection = getConnection()
     zope_connection.request(
       'GET', '/%%s/ERP5Site_launchFixConfigurationConsistency' %%(site_id),
@@ -107,6 +108,7 @@ if scalability:
   # Install testing scalability business configuration if not exists
   if testIfExist("/%%s/portal_configurator/" %%site_id) \
      and not testIfExist("/%%s/sale_order_module/" %%site_id):
+    print "Going to install testing scalability business configuration.."
     zope_connection = getConnection()
     zope_connection.request(
       'GET', '/%%s/business_configuration_module/1/build' %%site_id,
@@ -122,6 +124,7 @@ if scalability:
   # Create scalability users
   if testIfExist("/%%s/person_module/scalability_user/getTitle" %%site_id) \
      and not testIfExist("/%%s/person_module/scalability_user_0/getTitle" %%site_id):
+    print Going to create scalability users..
     zope_connection = getConnection()
     zope_connection.request(
       'GET', '/%%s/clone_scalability_user' %%site_id,