Scripts for inserting QTIP.pub key on installed nodes 09/5409/1
authorNauman_Ahad <Nauman_Ahad@dell.com>
Thu, 31 Dec 2015 14:37:40 +0000 (19:37 +0500)
committerNauman_Ahad <Nauman_Ahad@dell.com>
Thu, 31 Dec 2015 14:37:40 +0000 (19:37 +0500)
1st script takes in the installer type and installer ip
2nd script to be called by the qtip framework while providing
the destionation node ip as an argument

Change-Id: I2b6b2828bc0f00a38ea2998fb389435fd5963cae
Signed-off-by: Nauman_Ahad <Nauman_Ahad@dell.com>
data/get_env_info.sh [new file with mode: 0755]
data/qtip_creds.sh [new file with mode: 0755]

diff --git a/data/get_env_info.sh b/data/get_env_info.sh
new file mode 100755 (executable)
index 0000000..98ca68a
--- /dev/null
@@ -0,0 +1,21 @@
+#! /bin/bash
+
+usage() {
+    echo "usage $0  -n <installer_type> -i <installer_ip>"
+}
+
+
+
+while getopts ":n:i:" optchar; do
+    case "${optchar}" in
+        n)
+         export INSTALLER_TYPE=${OPTARG};; 
+
+        i)
+         export  INSTALLER_IP=${OPTARG};;
+
+        *)
+           echo "Incorrect usage"
+           usage ;;
+    esac
+done
diff --git a/data/qtip_creds.sh b/data/qtip_creds.sh
new file mode 100755 (executable)
index 0000000..e2619d6
--- /dev/null
@@ -0,0 +1,23 @@
+#! /bin/bash
+
+DEST_IP=$1
+echo $INSTALLER_TYPE
+echo $INSTALLER_IP
+
+case "$INSTALLER_TYPE" in
+    apex)
+        PSWD="vagrant";;
+    fuel)
+        PSWD="r00tme";;
+    compass)
+        PSWD="compass";;
+    joid)
+        PSWD="joid";;
+       *)
+        echo "Unkown installer $INSTALLER_TYPE specified";;
+esac
+
+sshoptions="-o StrictHostKeyChecking=no"
+sshpass -p $PSWD scp $sshoptions QtipKey.pub root@$INSTALLER_IP:/root
+sshpass -p $PSWD ssh $sshoptions root@$INSTALLER_IP "ssh-copy-id -i /root/QtipKey.pub root@$DEST_IP && rm -rf /root/QtipKey.pub"
+