Fix missing newline when adding new authorized ssh keys.
This commit is contained in:
parent
f0cbc32c36
commit
f77e32f7ee
1 changed files with 1 additions and 1 deletions
2
setup.sh
2
setup.sh
|
@ -101,7 +101,7 @@ setup_sqlproxy() {
|
|||
PUB_KEY="$(cat ${HOME}/.ssh/${KEY_NAME}.pub)"
|
||||
if ! grep -qe "$(printf '%s$' "${PUB_KEY}")" "${PROJECT_PATH}/etc/ssh/.ssh/authorized_keys"
|
||||
then
|
||||
printf 'command="/sqlproxy_cli.sh" %s' "${PUB_KEY}" >> "${PROJECT_PATH}/etc/ssh/.ssh/authorized_keys"
|
||||
printf 'command="/sqlproxy_cli.sh" %s\n' "${PUB_KEY}" >> "${PROJECT_PATH}/etc/ssh/.ssh/authorized_keys"
|
||||
fi
|
||||
|
||||
printf 'Restarting sql proxy (if running) to fix permissions.\n'
|
||||
|
|
Loading…
Reference in a new issue