Mercurial > hg > beaglert
comparison scripts/setup_ssh.sh @ 462:d9a4fc5357e7 prerelease
Path-relativeness of scripts has been improved. At least update_board will work when double clicked
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Mon, 20 Jun 2016 14:09:43 +0100 |
parents | 99de323c13b3 |
children | 7eb66c7898cb |
comparison
equal
deleted
inserted
replaced
461:26b3b87437fb | 462:d9a4fc5357e7 |
---|---|
1 #!/bin/sh | 1 #!/bin/sh |
2 [ -z "$BBB_HOSTNAME" ] && BBB_HOSTNAME="192.168.7.2" | 2 SCRIPTDIR=$(dirname "$0") |
3 [ -z "$BBB_USER" ] && BBB_USER="root" | 3 [ -z $SCRIPTDIR ] && SCRIPTDIR="./" || SCRIPTDIR=$SCRIPTDIR/ |
4 [ -z "$BBB_HOST" ] && BBB_HOST="bbb" | 4 . $SCRIPTDIR.bela_common || { echo "You must be in Bela/scripts to run these scripts" | exit 1; } |
5 | |
5 CONFIG_FILENAME=$HOME/.ssh/config | 6 CONFIG_FILENAME=$HOME/.ssh/config |
6 mkdir -p $HOME/.ssh # create the ssh folder if it does not exist | 7 mkdir -p $HOME/.ssh # create the ssh folder if it does not exist |
7 printf "\nHost $BBB_HOST\nHostname $BBB_HOSTNAME\nUser $BBB_USER\nStrictHostKeyChecking=no\n\n" >> $HOME/.ssh/config | 8 printf "\nHost $BBB_HOST\nHostname $BBB_HOSTNAME\nUser $BBB_USER\nStrictHostKeyChecking=no\n\n" >> $HOME/.ssh/config |
8 if [ $? -eq 0 ]; | 9 if [ $? -eq 0 ]; |
9 then | 10 then |