ssh-copy-id: tcsh doesnt work with multiline strings so we will make it uggly one-line
This commit is contained in:
parent
1f82f4e6c3
commit
90469031ee
@ -2,15 +2,14 @@ diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
|
|||||||
index 8e1091c..4bba5d6 100644
|
index 8e1091c..4bba5d6 100644
|
||||||
--- a/contrib/ssh-copy-id
|
--- a/contrib/ssh-copy-id
|
||||||
+++ b/contrib/ssh-copy-id
|
+++ b/contrib/ssh-copy-id
|
||||||
@@ -274,9 +274,9 @@ case "$REMOTE_VERSION" in
|
@@ -274,9 +274,7 @@ case "$REMOTE_VERSION" in
|
||||||
populate_new_ids 0
|
populate_new_ids 0
|
||||||
fi
|
fi
|
||||||
[ "$DRY_RUN" ] || printf '%s\n' "$NEW_IDS" | ssh "$@" "
|
[ "$DRY_RUN" ] || printf '%s\n' "$NEW_IDS" | ssh "$@" "
|
||||||
- umask 077 ;
|
- umask 077 ;
|
||||||
+ exec sh -c 'umask 077 ;
|
+ exec sh -c 'umask 077; mkdir -p .ssh && cat >> .ssh/authorized_keys || exit 1; if type restorecon >/dev/null 2>&1; then restorecon -F .ssh .ssh/authorized_keys; fi'" \
|
||||||
mkdir -p .ssh && cat >> .ssh/authorized_keys || exit 1 ;
|
- mkdir -p .ssh && cat >> .ssh/authorized_keys || exit 1 ;
|
||||||
- if type restorecon >/dev/null 2>&1 ; then restorecon -F .ssh .ssh/authorized_keys ; fi" \
|
- if type restorecon >/dev/null 2>&1 ; then restorecon -F .ssh .ssh/authorized_keys ; fi" \
|
||||||
+ if type restorecon >/dev/null 2>&1 ; then restorecon -F .ssh .ssh/authorized_keys ; fi'" \
|
|
||||||
|| exit 1
|
|| exit 1
|
||||||
ADDED=$(printf '%s\n' "$NEW_IDS" | wc -l)
|
ADDED=$(printf '%s\n' "$NEW_IDS" | wc -l)
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user