Mercurial > hg > beaglert
annotate scripts/setup_ssh.sh @ 499:a15a116f6904 prerelease
Took some of the verbosity out of the Doxyfile
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Wed, 22 Jun 2016 00:04:04 +0100 |
parents | d9a4fc5357e7 |
children | 7eb66c7898cb |
rev | line source |
---|---|
giuliomoro@425 | 1 #!/bin/sh |
giuliomoro@462 | 2 SCRIPTDIR=$(dirname "$0") |
giuliomoro@462 | 3 [ -z $SCRIPTDIR ] && SCRIPTDIR="./" || SCRIPTDIR=$SCRIPTDIR/ |
giuliomoro@462 | 4 . $SCRIPTDIR.bela_common || { echo "You must be in Bela/scripts to run these scripts" | exit 1; } |
giuliomoro@462 | 5 |
giuliomoro@73 | 6 CONFIG_FILENAME=$HOME/.ssh/config |
giuliomoro@364 | 7 mkdir -p $HOME/.ssh # create the ssh folder if it does not exist |
giuliomoro@364 | 8 printf "\nHost $BBB_HOST\nHostname $BBB_HOSTNAME\nUser $BBB_USER\nStrictHostKeyChecking=no\n\n" >> $HOME/.ssh/config |
giuliomoro@364 | 9 if [ $? -eq 0 ]; |
giuliomoro@364 | 10 then |
giuliomoro@364 | 11 printf "You can now login into the Beaglebone with\n\$ ssh $BBB_HOST\n" |
giuliomoro@364 | 12 else |
giuliomoro@364 | 13 printf "Something went wrong. You should still be able to log into the BeagleBone with \n\$ ssh $BBB_USER@$BBB_HOSTNAME\n" |
giuliomoro@73 | 14 fi |