monitor shipyard deploy to completion
[yaml_builds.git] / tools / 3deploy_site.sh
index f1ef231..2e998d5 100755 (executable)
@@ -17,7 +17,7 @@
 
 
 set -xe
-LOGDIR="/var/log/yaml_builds"
+LOGDIR="/var/log/akraino"
 mkdir -p $LOGDIR
 LOGFILE="$LOGDIR/${1}_$(date +"%Y%m%d%H%M%z")_$(basename $0|cut -d. -f1)"
 echo "logging to $LOGFILE"
@@ -39,14 +39,23 @@ source $(dirname $0)/env_$SITE.sh
 
 ssh $GENESIS_HOST << EOF
   cd /root/akraino
-  bash configs/promenade-bundle/genesis.sh
+  echo "#######################################################"
+  echo "# Running genesis.sh script "
+  echo "#######################################################"
+  bash genesis.sh
   # Shipyard takes time to really come up and start responding.
   date
   sleep 900
   # Following is a workaround, tested on dell servers.
   # TODO to be removed when not required.
+  echo "#######################################################"
+  echo "# Updating iptables "
+  echo "#######################################################"
   bash update_iptables.sh
-  bash deploy_site.sh
+  echo "#######################################################"
+  echo "# Running deploy_site.sh script "
+  echo "#######################################################"
+  #bash deploy_site.sh
 EOF
 
 exec 2>&-