updated templates and scripts for Airship 1.3
[yaml_builds.git] / tools / 3deploy_site.sh
index 5f30f0e..34fb3dc 100755 (executable)
 ##############################################################################
 
 
-set -x
+set -xe
+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"
+exec 1> >(tee -a $LOGFILE)
+exec 2>&1
 
 source $(dirname $0)/setenv.sh
 
@@ -33,12 +39,17 @@ source $(dirname $0)/env_$SITE.sh
 
 ssh $GENESIS_HOST << EOF
   cd /root/akraino
-  bash configs/promenade-bundle/genesis.sh
+  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.
   bash update_iptables.sh
-  bash deploy_site.sh
+  #bash deploy_site.sh
 EOF
+
+exec 2>&-
+exec 1>&-
+exit 0
+