ea3f4dd459
ensure 4 spaces indentation is used everywhere. Change-Id: Ieb48faacb4c96b7b358771d70c17f2f22d0354f4
14 lines
317 B
Bash
Executable File
14 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
# Save user SSH public key if available.
|
|
# (Obviously not suitable for downloadable images).
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
source $_LIB/die
|
|
[ -n "$TMP_HOOKS_PATH" ] || die "Temp hook path not set"
|
|
|
|
if [ -e ~/.ssh/authorized_keys ]; then
|
|
cat ~/.ssh/authorized_keys > $TMP_HOOKS_PATH/ssh-authorized-keys
|
|
fi
|