From db0f54cc6f8db11d57102ae553e758721e6d1b4f Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 23 Jun 2015 13:21:59 +0200 Subject: [PATCH] open early ssh access to myplc's debug key --- build.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build.sh b/build.sh index 29aa5bf..a68e9d4 100755 --- a/build.sh +++ b/build.sh @@ -353,6 +353,13 @@ EOF # build/passwd copied out by prep.sh sed -e "s@^root:[^:]*:\(.*\)@root:$ROOT_PASSWORD:\1@" ${VARIANT}/passwd >$OVERLAY/etc/passwd + # recent bootCDs rely on a standard systemd startup sequence + # so allow debug key to enter in this context whenever that makes sense + mkdir -p $OVERLAY/root/.ssh + chmod 700 $OVERLAY/root/.ssh + cp $PLC_DEBUG_SSH_KEY_PUB $OVERLAY/root/.ssh/authorized_keys + chmod 600 $OVERLAY/root/.ssh/authorized_keys + # Install node configuration file (e.g., if node has no floppy disk or USB slot) if [ -f "$NODE_CONFIGURATION_FILE" ] ; then echo "* Installing node configuration file $NODE_CONFIGURATION_FILE -> /usr/boot/plnode.txt of the bootcd image" -- 2.43.0