2012-11-09 11:04:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Save user SSH public key if available.
|
|
|
|
# XXX: Obviously not suitable for downloadable images.
|
|
|
|
|
2014-09-04 04:56:29 +00:00
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
|
|
set -x
|
|
|
|
fi
|
2014-04-03 02:24:15 +00:00
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
2012-11-09 11:04:13 +00:00
|
|
|
|
2015-11-24 02:05:35 +00:00
|
|
|
if [ "$DIB_LOCAL_CONFIG_USERNAME" == "root" ]; then
|
|
|
|
DIR_NAME=${DIB_LOCAL_CONFIG_USERNAME}
|
|
|
|
else
|
|
|
|
DIR_NAME=home/${DIB_LOCAL_CONFIG_USERNAME}
|
|
|
|
fi
|
|
|
|
|
2012-11-09 11:04:13 +00:00
|
|
|
if [ -e "/tmp/in_target.d/ssh-authorized-keys" ]; then
|
2015-11-24 02:05:35 +00:00
|
|
|
mkdir -p /${DIR_NAME}/.ssh
|
|
|
|
cat /tmp/in_target.d/ssh-authorized-keys >> /${DIR_NAME}/.ssh/authorized_keys
|
|
|
|
chmod 0700 /${DIR_NAME}/.ssh
|
|
|
|
chmod 0600 /${DIR_NAME}/.ssh/authorized_keys
|
2012-11-09 11:04:13 +00:00
|
|
|
fi
|