# File 'lib/flotte/cli/host.rb', line 7deflistFlotte.registry.hosts.eachdo|host|Flotte.output.putshost.nameendend
#ssh(host) ⇒ Object
14
15
16
17
18
19
20
21
# File 'lib/flotte/cli/host.rb', line 14defssh(host)host=Flotte.registry.hosts[host]command=["ssh","-t",host.ssh_destination_string]run_locallydoinfo"Connecting to host #{host.name} via #{command.join("")}"Kernel.exec(*command)endend