This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch lastwibbles in repository toolchain/semiautobench.
commit cf4dbe16a0c3526551f98d94291fa5560a15b55a Author: Bernard Ogden bernie.ogden@linaro.org Date: Tue Jul 28 11:32:35 2015 +0200
Report 'early debugging' hostname and IP as early as possible
Change-Id: Ia395037d82b199a931cda760ce8c6b5dc02c6448 --- setup_session_debian | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/setup_session_debian b/setup_session_debian index ac6c2b5..0c28db2 100755 --- a/setup_session_debian +++ b/setup_session_debian @@ -1,6 +1,9 @@ #!/bin/bash # Usage ./setup_session <pub_key>
+echo "Hostname for early debugging: $(cat /etc/hostname)" +echo "IP address for early debugging: $(hostname -I)" + chmod a+x stop_hacking_debian cp stop_hacking_debian /bin/stop_hacking chmod a+x invoke_session_debian @@ -12,8 +15,3 @@ echo "Public Key Installed: $1"
/etc/init.d/ssh restart echo "sshd re-started" - -echo "Hostname for early debugging: $(cat /etc/hostname)" -echo "IP address for early debugging: $(hostname -I)" - -