2012-11-09 11:04:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Save user SSH public key if available.
|
|
|
|
# XXX: Obviously not suitable for downloadable images.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ -e "/tmp/in_target.d/ssh-authorized-keys" ]; then
|
2013-03-04 07:56:11 +00:00
|
|
|
mkdir -p /root/.ssh
|
|
|
|
cat /tmp/in_target.d/ssh-authorized-keys >> /root/.ssh/authorized_keys
|
2013-05-24 00:01:57 +00:00
|
|
|
chmod 0700 /root/.ssh
|
|
|
|
chmod 0600 /root/.ssh/authorized_keys
|
2012-11-09 11:04:13 +00:00
|
|
|
fi
|