aboutsummaryrefslogtreecommitdiffstats
path: root/mcp
diff options
context:
space:
mode:
authorMichael Polenchuk <mpolenchuk@mirantis.com>2019-02-05 07:32:32 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-02-05 07:32:32 +0000
commitad2d9696a3a9dd7602dd0d794a0b722e0b9d3565 (patch)
treee6f6765ff1b2bd10cd1c4aa1a739ceab43355ac8 /mcp
parent344ff3f741c925d387bbf9f10db0f77455f929da (diff)
parent68594bd6e16253d2f2977a4ab46713386e2482bd (diff)
Merge "[cfg01] Use ssh config to set default user & key"
Diffstat (limited to 'mcp')
-rwxr-xr-xmcp/scripts/docker-compose/files/entrypoint.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/mcp/scripts/docker-compose/files/entrypoint.sh b/mcp/scripts/docker-compose/files/entrypoint.sh
index eb549bc28..9830ea15f 100755
--- a/mcp/scripts/docker-compose/files/entrypoint.sh
+++ b/mcp/scripts/docker-compose/files/entrypoint.sh
@@ -16,6 +16,9 @@ fi
if [ ! -f /home/ubuntu/.ssh/authorized_keys ]; then
install -D -o ubuntu /root/fuel/mcp/scripts/mcp.rsa.pub \
/home/ubuntu/.ssh/authorized_keys
+ mkdir -p /root/.ssh/
+ echo 'User ubuntu' > /root/.ssh/config
+ echo 'IdentityFile /root/fuel/mcp/scripts/mcp.rsa' >> /root/.ssh/config
fi
if ! grep -q localhost /etc/hosts; then