bugfix due to directory adjustment 09/23209/1
authorwu.zhihui <wu.zhihui1@zte.com.cn>
Mon, 17 Oct 2016 04:17:24 +0000 (12:17 +0800)
committerwu.zhihui <wu.zhihui1@zte.com.cn>
Mon, 17 Oct 2016 04:21:46 +0000 (12:21 +0800)
Some files still use directory "data/". Fix it.

Change-Id: Ia07f380c3e9c3e312d17b09728b050c818492f0f
Signed-off-by: wu.zhihui <wu.zhihui1@zte.com.cn>
docs/configguide/configuration.rst
qtip.py
scripts/file_permission.sh
scripts/qtip_creds.sh
scripts/ref_results/index_calculation.py

index 5d03de0..a9bb6b1 100644 (file)
@@ -94,7 +94,7 @@ QTIP  default key pair
 """"""""""""""""""""""
 
 QTIP uses a SSH key pair to connect to the guest image. This key pair can
-be found in the ``data/`` directory.
+be found in the ``config/`` directory.
 
 
 Hardware configuration
diff --git a/qtip.py b/qtip.py
index 3813095..493f014 100644 (file)
--- a/qtip.py
+++ b/qtip.py
@@ -11,7 +11,7 @@ import os
 
 
 def main():
-    os.system('./data/file_permission.sh')
+    os.system('./scripts/file_permission.sh')
     Cli()
 
 
index 01a77d5..a8af957 100755 (executable)
@@ -1,3 +1,3 @@
 #! /bin/bash
-chmod 0600 data/QtipKey
-chmod 0600 data/QtipKey.pub
+chmod 0600 config/QtipKey
+chmod 0600 config/QtipKey.pub
index beb4659..94d9133 100755 (executable)
@@ -1,4 +1,4 @@
-#! /bin/bash
+! /bin/bash
 
 DEST_IP=$1
 echo $INSTALLER_TYPE
@@ -6,21 +6,21 @@ echo $INSTALLER_IP
 sshoptions="-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
 case "$INSTALLER_TYPE" in
     apex)
-        scp $sshoptions -i $APEX_KEY ./data/QtipKey.pub stack@$INSTALLER_IP:/home/stack
-        scp $sshoptions -i $APEX_KEY ./data/QtipKey stack@$INSTALLER_IP:/home/stack
+        scp $sshoptions -i $APEX_KEY ./config/QtipKey.pub stack@$INSTALLER_IP:/home/stack
+        scp $sshoptions -i $APEX_KEY ./config/QtipKey stack@$INSTALLER_IP:/home/stack
         ssh $sshoptions -i $APEX_KEY stack@$INSTALLER_IP "ssh-copy-id $sshoptions -i /home/stack/QtipKey.pub heat-admin@$DEST_IP && rm -rf /home/stack/QtipKey && rm -rf /home/stack/QtipKey.pub"
         ;;
     fuel)
         PSWD="r00tme"
-        sshpass -p $PSWD scp $sshoptions ./data/QtipKey.pub root@$INSTALLER_IP:/root
-        sshpass -p $PSWD scp $sshoptions ./data/QtipKey root@$INSTALLER_IP:/root
+        sshpass -p $PSWD scp $sshoptions ./config/QtipKey.pub root@$INSTALLER_IP:/root
+        sshpass -p $PSWD scp $sshoptions ./config/QtipKey root@$INSTALLER_IP:/root
         sshpass -p $PSWD ssh $sshoptions root@$INSTALLER_IP "grep -q '\-F /dev/null ' /usr/bin/ssh-copy-id || sed -i 's/\(ssh -i.*$\)/\1\n -F \/dev\/null \\\/g' `which ssh-copy-id`"
         sshpass -p $PSWD ssh $sshoptions root@$INSTALLER_IP "ssh-copy-id $sshoptions -i /root/QtipKey root@$DEST_IP && rm -rf /root/QtipKey && rm -rf /root/QtipKey.pub"
         ;;
     compass)
         PSWD="root"
-        sshpass -p $PSWD scp $sshoptions ./data/QtipKey.pub root@$INSTALLER_IP:/root
-        sshpass -p $PSWD scp $sshoptions ./data/QtipKey root@$INSTALLER_IP:/root
+        sshpass -p $PSWD scp $sshoptions ./config/QtipKey.pub root@$INSTALLER_IP:/root
+        sshpass -p $PSWD scp $sshoptions ./config/QtipKey root@$INSTALLER_IP:/root
         sshpass -p $PSWD ssh $sshoptions root@$INSTALLER_IP "ssh-copy-id $sshoptions -i /root/QtipKey.pub root@$DEST_IP && rm -rf /root/QtipKey && rm -rf /root/QtipKey.pub"
         ;;
     joid)
index 5ca4a46..4ead79f 100644 (file)
@@ -13,7 +13,7 @@ def compute_index(total_measured, ref_result, count):
 
 def get_reference(*args):
 
-    with open('data/ref_results/reference.json') as reference_file:
+    with open('scripts/ref_results/reference.json') as reference_file:
         reference_djson = json.load(reference_file)
         for arg in args:
             ref_n = reference_djson.get(str(arg))