summaryrefslogtreecommitdiff
path: root/support/ssh_tunnel_bug.rb
diff options
context:
space:
mode:
Diffstat (limited to 'support/ssh_tunnel_bug.rb')
-rwxr-xr-xsupport/ssh_tunnel_bug.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/ssh_tunnel_bug.rb b/support/ssh_tunnel_bug.rb
index d5fa09d..3f8f0ba 100755
--- a/support/ssh_tunnel_bug.rb
+++ b/support/ssh_tunnel_bug.rb
@@ -15,12 +15,12 @@
# visible_hostname netsshtest
# * Start squid squid -N -d 1 -D
# * Run this script
-# * Configure browser proxy to use localhost with LOCAL_PORT.
+# * Configure browser proxy to use localhost with LOCAL_PORT.
# * Load any page, wait for it to load fully. If the page loads
# correctly, move on. If not, something needs to be corrected.
# * Refresh the page several times. This should cause this
# script to failed with the error: "closed stream". You may
-# need to try a few times.
+# need to try a few times.
#
require 'highline/import'
@@ -37,7 +37,7 @@ pass = ask("Password: ") { |q| q.echo = "*" }
puts "Configure your browser proxy to localhost:#{LOCAL_PORT}"
begin
- session = Net::SSH.start(host, user, password: pass)
+ session = Net::SSH.start(host, user, password: pass)
session.forward.local(LOCAL_PORT, host, PROXY_PORT)
session.loop {true}
rescue StandardError => e