summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Hands <phil@hands.com>2021-02-24 23:43:16 +0100
committerDarren Tucker <dtucker@dtucker.net>2021-02-26 01:06:15 +1100
commit476ac8e9d33dbf96ef97aab812b8d7089d0cdc24 (patch)
treef8fbbd82e7b1b0e800f8605b80bf9844e566b1f6
parent983e05ef3b81329d76d6a802b39ad0d1f637c06c (diff)
tidy the $INSTALLKEY_SH code layout a little
-rw-r--r--contrib/ssh-copy-id10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
index 5fee1507..cd122def 100644
--- a/contrib/ssh-copy-id
+++ b/contrib/ssh-copy-id
@@ -252,13 +252,13 @@ installkeys_sh() {
cd;
umask 077;
mkdir -p "${AUTH_KEY_DIR}" &&
- { [ -z \`tail -1c ${AUTH_KEY_FILE} 2>/dev/null\` ] || echo >> "${AUTH_KEY_FILE}" || exit 1; } &&
- cat >> "${AUTH_KEY_FILE}" ||
- exit 1;
+ { [ -z \`tail -1c ${AUTH_KEY_FILE} 2>/dev/null\` ] ||
+ echo >> "${AUTH_KEY_FILE}" || exit 1; } &&
+ cat >> "${AUTH_KEY_FILE}" || exit 1;
if type restorecon >/dev/null 2>&1; then
- restorecon -F "${AUTH_KEY_DIR}" "${AUTH_KEY_FILE}";
+ restorecon -F "${AUTH_KEY_DIR}" "${AUTH_KEY_FILE}";
fi
-EOF
+ EOF
)
# to defend against quirky remote shells: use 'exec sh -c' to get POSIX;