From 9e713aa73b11d0dc80231006daa32d788f11b9c2 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 3 Feb 2010 00:17:52 -0800 Subject: [PATCH] Fix default config to work with new ssh config keys --- config/default.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/default.rb b/config/default.rb index a8979f0d5..3d4c6a2d4 100644 --- a/config/default.rb +++ b/config/default.rb @@ -1,7 +1,7 @@ Hobo::Config.run do |config| # default config goes here - config.ssh.uname = "hobo" - config.ssh.pass = "hobo" + config.ssh.username = "hobo" + config.ssh.password = "hobo" config.ssh.host = "localhost" config.ssh.forwarded_port_key = "ssh" config.ssh.max_tries = 10