From 7e71b73e4a925e5085222240847b2ed774b2da62 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 4 Feb 2013 10:04:31 -0800 Subject: [PATCH] Reformat some comments to be within 80 chars --- lib/vagrant/util/ssh.rb | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/vagrant/util/ssh.rb b/lib/vagrant/util/ssh.rb index 466fcef93..7b73308c4 100644 --- a/lib/vagrant/util/ssh.rb +++ b/lib/vagrant/util/ssh.rb @@ -101,10 +101,13 @@ module Vagrant "-o", "ForwardX11Trusted=yes"] end - # Configurables -- extra_args should always be last due to the way the ssh args parser works; - # e.g. if the user wants to use the -t option, any shell command(s) she'd like to run on the - # remote server would have to be the last part of the 'ssh' command: - # $: ssh localhost -t -p 2222 "cd mydirectory; bash" + # Configurables -- extra_args should always be last due to the way the + # ssh args parser works. e.g. if the user wants to use the -t option, + # any shell command(s) she'd like to run on the remote server would + # have to be the last part of the 'ssh' command: + # + # $ ssh localhost -t -p 2222 "cd mydirectory; bash" + # # Without having extra_args be last, the user loses this ability command_options += ["-o", "ForwardAgent=yes"] if ssh_info[:forward_agent] command_options.concat(opts[:extra_args]) if opts[:extra_args]