Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/pr/153'
Browse files Browse the repository at this point in the history
  • Loading branch information
mika committed Jun 3, 2020
2 parents 64250ae + 07e835e commit c69705b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions grml-debootstrap
Expand Up @@ -1798,6 +1798,8 @@ iface ${interface} inet dhcp
fi

if [ -n "${SSHCOPYID}" ] ; then
AUTHORIZED_KEYS_SOURCE=${AUTHORIZED_KEYS_SOURCE:-$HOME/.ssh/authorized_keys}
AUTHORIZED_KEYS_TARGET=${AUTHORIZED_KEYS_TARGET:-$MNTPOINT/root/.ssh/}
if ssh-add -L >/dev/null 2>&1 ; then
einfo "Use locally available public keys to authorise root login on the target system as requested via --sshcopyid option."
mkdir -p "${MNTPOINT}"/root/.ssh
Expand All @@ -1809,6 +1811,17 @@ iface ${interface} inet dhcp
eend 1
bailout 1
fi
elif [ -f "$AUTHORIZED_KEYS_SOURCE" ]; then
einfo "copying '$AUTHORIZED_KEYS_SOURCE' to '$AUTHORIZED_KEYS_TARGET' as requested via --sshcopyid option."
mkdir -p "$AUTHORIZED_KEYS_TARGET"
chmod 0700 "$AUTHORIZED_KEYS_TARGET"
if cp "$AUTHORIZED_KEYS_SOURCE" "$AUTHORIZED_KEYS_TARGET" ; then
eend 0
else
eerror "Error: copying '$AUTHORIZED_KEYS_SOURCE' to '$AUTHORIZED_KEYS_TARGET' failed"
eend 1
bailout 1
fi
else
eerror "Could not open a connection to your authentication agent or the agent has no identites."
eend 1
Expand Down

0 comments on commit c69705b

Please sign in to comment.