From c994e65fa0fac7bf2c5bb199763990623d528286 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Tue, 29 Aug 2017 02:36:41 +0200 Subject: p/fuel: lib.sh: Reuse /tmp/mcp.rsa if present Change-Id: Ia46097b3a0e5bb155e8a2e979aaf9eea50f6bcfb Signed-off-by: Alexandru Avadanii --- .../0022-lib.sh-Reuse-tmp-mcp.rsa-if-present.patch | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 patches/opnfv-fuel/0022-lib.sh-Reuse-tmp-mcp.rsa-if-present.patch (limited to 'patches/opnfv-fuel') diff --git a/patches/opnfv-fuel/0022-lib.sh-Reuse-tmp-mcp.rsa-if-present.patch b/patches/opnfv-fuel/0022-lib.sh-Reuse-tmp-mcp.rsa-if-present.patch new file mode 100644 index 00000000..3943fb39 --- /dev/null +++ b/patches/opnfv-fuel/0022-lib.sh-Reuse-tmp-mcp.rsa-if-present.patch @@ -0,0 +1,25 @@ +From: Alexandru Avadanii +Date: Tue, 29 Aug 2017 02:35:37 +0200 +Subject: [PATCH] lib.sh: Reuse /tmp/mcp.rsa if present + +Signed-off-by: Alexandru Avadanii +--- + mcp/scripts/lib.sh | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/mcp/scripts/lib.sh b/mcp/scripts/lib.sh +index de7b9ec..33ec8b0 100644 +--- a/mcp/scripts/lib.sh ++++ b/mcp/scripts/lib.sh +@@ -9,6 +9,11 @@ generate_ssh_key() { + user=${SUDO_USER} + fi + ++ if [ -f "/tmp/${SSH_KEY}" ]; then ++ cp "/tmp/${SSH_KEY}" . ++ ssh-keygen -f "${SSH_KEY}" -y > "${SSH_KEY}.pub" ++ fi ++ + [ -f "${SSH_KEY}" ] || ssh-keygen -f "${SSH_KEY}" -N '' + install -o "${user}" -m 0600 "${SSH_KEY}" /tmp/ + } -- cgit 1.2.3-korg