annotate scripts/setup_ssh.sh @ 364:ab6d78e18e85 prerelease

Simplified setup-ssh files: no more need for keypairs, now just setting the bbb entry in ~/.ssh/config
author Giulio Moro <giuliomoro@yahoo.it>
date Thu, 09 Jun 2016 01:47:13 +0100
parents scripts/setup-ssh.sh@f03d68f18d7f
children 99de323c13b3
rev   line source
giuliomoro@73 1 #!/bin/bash
giuliomoro@364 2 [ -z "$BBB_HOSTNAME" ] && BBB_HOSTNAME="192.168.7.2"
giuliomoro@364 3 [ -z "$BBB_USER" ] && BBB_USER="root"
giuliomoro@364 4 [ -z "$BBB_HOST" ] && BBB_HOST="bbb"
giuliomoro@73 5 CONFIG_FILENAME=$HOME/.ssh/config
giuliomoro@364 6 mkdir -p $HOME/.ssh # create the ssh folder if it does not exist
giuliomoro@364 7 printf "\nHost $BBB_HOST\nHostname $BBB_HOSTNAME\nUser $BBB_USER\nStrictHostKeyChecking=no\n\n" >> $HOME/.ssh/config
giuliomoro@364 8 if [ $? -eq 0 ];
giuliomoro@364 9 then
giuliomoro@364 10 printf "You can now login into the Beaglebone with\n\$ ssh $BBB_HOST\n"
giuliomoro@364 11 else
giuliomoro@364 12 printf "Something went wrong. You should still be able to log into the BeagleBone with \n\$ ssh $BBB_USER@$BBB_HOSTNAME\n"
giuliomoro@73 13 fi