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
|
|
|
|
|
|
|
if [ -e "/tmp/in_target.d/ssh-authorized-keys" ]; then
|
2014-05-02 17:02:38 +00:00
|
|
|
mkdir -p /root/.ssh
|
|
|
|
cat /tmp/in_target.d/ssh-authorized-keys >> /root/.ssh/authorized_keys
|
|
|
|
chmod 0700 /root/.ssh
|
|
|
|
chmod 0600 /root/.ssh/authorized_keys
|
2012-11-09 11:04:13 +00:00
|
|
|
fi
|