diff .ssh/config @ 105:3f1ead4ba8b4

Changes for the Pi: * Code block to start emulationstation if the circumstances warrant, as well * as checking for the presence of a PS3 controller and warning that it isn't * connected. Also adding usernames to the ssh config to make aliases and * whatnot work more easily.
author Steve Huston <huston@astro.princeton.edu>
date Sat, 08 Mar 2014 10:00:34 -0500
parents 103f26c9f9f7
children e3e599ad02f0
line wrap: on
line diff
--- a/.ssh/config	Wed Dec 18 17:11:07 2013 -0500
+++ b/.ssh/config	Sat Mar 08 10:00:34 2014 -0500
@@ -13,13 +13,22 @@
 
 # xanadu-vm and syrinx's keys change, let's try to avoid errors
 Host xanadu-vm syrinx xanadu-vm.astro.princeton.edu syrinx.astro.princeton.edu
+  User huston
   StrictHostKeyChecking no
   ForwardAgent yes
   ForwardX11 yes
   ForwardX11Trusted yes
 
+# Everything is fine for the Raspberry Pi, just need a different user
+Host cake cake.srhuston.net
+  User pi
+  ForwardAgent yes
+  ForwardX11 yes
+  ForwardX11Trusted yes
+
 # Allow everything for CSES, astro, and home hosts w/ FQDN
 Host cses*.princeton.edu *.astro.princeton.edu *.srhuston.net
+  User huston
   ForwardAgent yes
   ForwardX11 yes
   ForwardX11Trusted yes
@@ -33,6 +42,7 @@
 # Now allow for anything else - if we're typing a single hostname, it's likely
 # trusted.
 Host *
+  User huston
   ForwardAgent yes
   ForwardX11 yes
   ForwardX11Trusted yes