mirror of
git://slackware.nl/current.git
synced 2025-01-10 05:25:51 +01:00
20 lines
716 B
Diff
20 lines
716 B
Diff
|
--- ./contrib/ssh-copy-id.orig 2020-09-27 02:25:01.000000000 -0500
|
||
|
+++ ./contrib/ssh-copy-id 2020-11-12 19:01:42.049254763 -0600
|
||
|
@@ -247,7 +247,7 @@
|
||
|
# the -z `tail ...` checks for a trailing newline. The echo adds one if was missing
|
||
|
# the cat adds the keys we're getting via STDIN
|
||
|
# and if available restorecon is used to restore the SELinux context
|
||
|
- INSTALLKEYS_SH=$(tr '\t\n' ' ' <<-EOF)
|
||
|
+ INSTALLKEYS_SH=$(tr '\t\n' ' ' <<-EOF
|
||
|
cd;
|
||
|
umask 077;
|
||
|
mkdir -p $(dirname "${AUTH_KEY_FILE}") &&
|
||
|
@@ -258,6 +258,7 @@
|
||
|
restorecon -F .ssh ${AUTH_KEY_FILE};
|
||
|
fi
|
||
|
EOF
|
||
|
+ )
|
||
|
|
||
|
# to defend against quirky remote shells: use 'exec sh -c' to get POSIX;
|
||
|
printf "exec sh -c '%s'" "${INSTALLKEYS_SH}"
|