From 3a7355ede9676b244f10b7dd5a1de76830138ff8 Mon Sep 17 00:00:00 2001 From: Michael Dwyer Date: Tue, 14 Jul 2026 13:40:11 -0600 Subject: [PATCH] Fixes the #32 and #34 by adjusting SSH arguments and pipeline Add -t to the ssh call to allow the sudo password request https://github.com/edera-dev/learn/issues/32 Add "|| true" to the ssh calls to turn their exits to success https://github.com/edera-dev/learn/issues/34 --- getting-started/edera-installer/scripts/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting-started/edera-installer/scripts/install.sh b/getting-started/edera-installer/scripts/install.sh index cf0c3e3..ff21365 100755 --- a/getting-started/edera-installer/scripts/install.sh +++ b/getting-started/edera-installer/scripts/install.sh @@ -47,9 +47,9 @@ scp $SSH_OPTS ./scripts/edera-install.sh ${SSH_USER}@${NODE_IP}:~ # Run the installer (use sudo if not root) if [ "$SSH_USER" = "root" ]; then - ssh $SSH_OPTS "${SSH_USER}@${NODE_IP}" 'chmod +x ~/edera-install.sh && ~/edera-install.sh' + ssh $SSH_OPTS "${SSH_USER}@${NODE_IP}" 'chmod +x ~/edera-install.sh && ~/edera-install.sh' || true else - ssh $SSH_OPTS "${SSH_USER}@${NODE_IP}" 'chmod +x ~/edera-install.sh && sudo ~/edera-install.sh' + ssh -t $SSH_OPTS "${SSH_USER}@${NODE_IP}" 'chmod +x ~/edera-install.sh && sudo ~/edera-install.sh' || true fi echo ""