08797d44b5
"$TMP_HOOKS_PATH." is always be nonzero so we should remove the dot. Change-Id: I0432bb3e21cc29806e1e2ae245dd4b6301ee9ba6
12 lines
298 B
Bash
Executable File
12 lines
298 B
Bash
Executable File
#!/bin/bash
|
|
# Save user SSH public key if available.
|
|
# (Obviously not suitable for downloadable images).
|
|
|
|
set -e
|
|
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
|