Mercurial > hg > beaglert
comparison scripts/setup_ssh.sh @ 516:7eb66c7898cb prerelease
Fixed setup_ssh (got screwed by bela_common)
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Wed, 22 Jun 2016 13:34:23 +0100 |
parents | d9a4fc5357e7 |
children |
comparison
equal
deleted
inserted
replaced
515:03b511d99f3d | 516:7eb66c7898cb |
---|---|
1 #!/bin/sh | 1 #!/bin/sh |
2 SCRIPTDIR=$(dirname "$0") | 2 SCRIPTDIR=$(dirname "$0") |
3 [ -z $SCRIPTDIR ] && SCRIPTDIR="./" || SCRIPTDIR=$SCRIPTDIR/ | 3 [ -z $SCRIPTDIR ] && SCRIPTDIR="./" || SCRIPTDIR=$SCRIPTDIR/ |
4 . $SCRIPTDIR.bela_common || { echo "You must be in Bela/scripts to run these scripts" | exit 1; } | 4 . $SCRIPTDIR.bela_common || { echo "You must be in Bela/scripts to run these scripts" | exit 1; } |
5 | 5 |
6 [ -z $BBB_HOST ] && BBB_HOST=bbb | |
6 CONFIG_FILENAME=$HOME/.ssh/config | 7 CONFIG_FILENAME=$HOME/.ssh/config |
7 mkdir -p $HOME/.ssh # create the ssh folder if it does not exist | 8 mkdir -p $HOME/.ssh # create the ssh folder if it does not exist |
8 printf "\nHost $BBB_HOST\nHostname $BBB_HOSTNAME\nUser $BBB_USER\nStrictHostKeyChecking=no\n\n" >> $HOME/.ssh/config | 9 printf "\nHost $BBB_HOST\nHostname $BBB_HOSTNAME\nUser $BBB_USER\nStrictHostKeyChecking=no\n\n" >> $HOME/.ssh/config |
9 if [ $? -eq 0 ]; | 10 if [ $? -eq 0 ]; |
10 then | 11 then |