From 2d237f7a87167f0f4a91c8367a7b6a8eb8201a1e Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Mon, 26 Aug 2019 18:27:36 +0200 Subject: [PATCH] Fix a typo that prevents AUTHORIZE_SSH from working Also remove the long deprecated ENABLE_SSH. Change-Id: I4256c8e89923c7104cb4191f3381312c1593b535 --- tinyipa/finalise-tinyipa.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tinyipa/finalise-tinyipa.sh b/tinyipa/finalise-tinyipa.sh index cca377b..dace708 100755 --- a/tinyipa/finalise-tinyipa.sh +++ b/tinyipa/finalise-tinyipa.sh @@ -9,15 +9,8 @@ source ${WORKDIR}/common.sh BUILDDIR="$WORKDIR/tinyipabuild" BUILD_AND_INSTALL_TINYIPA=${BUILD_AND_INSTALL_TINYIPA:-true} TINYCORE_MIRROR_URL=${TINYCORE_MIRROR_URL:-} -ENABLE_SSH=${ENABLE_SSH:-false} INSTALL_SSH=${INSTALL_SSH:-true} -AUTHORIZE_SSH=${ENABLE_SSH:-false} - -if $ENABLE_SSH; then - echo "WARNING: using ENABLE_SSH is deprecated, use INSTALL_SSH and AUTHORIZE_SSH variables instead" - INSTALL_SSH=true - AUTHORIZE_SSH=true -fi +AUTHORIZE_SSH=${AUTHORIZE_SSH:-false} SSH_PUBLIC_KEY=${SSH_PUBLIC_KEY:-} PYOPTIMIZE_TINYIPA=${PYOPTIMIZE_TINYIPA:-true}