ea3f4dd459
ensure 4 spaces indentation is used everywhere. Change-Id: Ieb48faacb4c96b7b358771d70c17f2f22d0354f4
14 lines
359 B
Bash
Executable File
14 lines
359 B
Bash
Executable File
#!/bin/bash
|
|
# Save user SSH public key if available.
|
|
# XXX: Obviously not suitable for downloadable images.
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [ -e "/tmp/in_target.d/ssh-authorized-keys" ]; then
|
|
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
|
|
fi
|