aboutsummaryrefslogtreecommitdiffstats
path: root/cdap3vm/install.sh
diff options
context:
space:
mode:
authorLisa Revel <lr0306@att.com>2017-05-09 17:23:13 -0400
committerLisa Revel <lr0306@att.com>2017-05-11 19:40:59 +0000
commite99ee402295827468bdd81b9308531a88deb7dc4 (patch)
tree6954428fa5e25d1ab55a5f0507f27de45a6e377f /cdap3vm/install.sh
parentc267e9c7d288aaa5d8c32f1910b2d0e62c2d2b00 (diff)
[DCAE-17] Updates for r1.1.0
Change-Id: I0a930cb56f0db0f90870b14aef74ef6c00324276 Signed-off-by: Lisa Revel <lr0306@att.com>
Diffstat (limited to 'cdap3vm/install.sh')
-rw-r--r--cdap3vm/install.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/cdap3vm/install.sh b/cdap3vm/install.sh
index d2947ac..290540c 100644
--- a/cdap3vm/install.sh
+++ b/cdap3vm/install.sh
@@ -21,12 +21,41 @@
# Default will be a production installation
# Any test installation requires passing arguments to different steps
+umask 0022
+CDAPLOG=$(dirname $0)/cdap-hadoop-install.log
+
+(
+echo -n "### Start at: "
+date
+
cd $(dirname $0)/install-steps
+pwd
+echo
+echo '## 01-generate-host-ids-configs.sh'
bash 01-generate-host-ids-configs.sh
+
+echo
+echo '## 02-user-creation.sh'
bash 02-user-creation.sh
+
#bash 03-hadoop-rpms.sh
+
+echo
+echo '## install-hortonworks-hadoop.sh'
bash install-hortonworks-hadoop.sh
+
+echo
+echo '## install-cdap-pkgs.sh'
bash install-cdap-pkgs.sh
+
+echo
+echo '## 04-folder-creation.sh'
bash 04-folder-creation.sh
+echo
+echo -n "### End at: "
+date
+
+) 2>&1 | tee -a $CDAPLOG
+