Index: src/scripts/mod_for_test_scripts/350addTestAuthKeys |
diff --git a/src/scripts/mod_for_test_scripts/350addTestAuthKeys b/src/scripts/mod_for_test_scripts/350addTestAuthKeys |
index 13e30d122b3733ab74268379d5a61647982ea2a9..cc3967db22642005aaec2f838125c2aceb0d9464 100755 |
--- a/src/scripts/mod_for_test_scripts/350addTestAuthKeys |
+++ b/src/scripts/mod_for_test_scripts/350addTestAuthKeys |
@@ -9,8 +9,8 @@ |
echo "Copying public keys" |
-KEYS_DIR=ssh_keys |
-ROOT_AUTHKEYS=/root/.ssh/authorized_keys |
- |
-mkdir -p /root/.ssh |
+KEYS_DIR=${GCLIENT_ROOT}/src/scripts/mod_for_test_scripts/ssh_keys |
+mkdir -p ${ROOT_FS_DIR}/root/.ssh |
+ROOT_AUTHKEYS=${ROOT_FS_DIR}/root/.ssh/authorized_keys |
cat ${KEYS_DIR}/*.pub >> ${ROOT_AUTHKEYS} |
+ |