capistranoを実行

config/deploy/development.rb

role :app, %w{vagrant@locahost}
role :web, %w{vagrant@locahost}
role :db, %w{vagrant@locahost}

server 'localhost', user: 'vagrant', roles: %w{web app}

task :first_task do
	run_locally do
		execute "echo hello world"
	end
end

[vagrant@localhost capistrano]$ cap development first_task
00:00 first_task
01 echo hello world
01 hello world
✔ 01 vagrant@localhost 0.026s

なんじゃこりゃーーーーーーーーーーーーーーーーーーーー?
はああああああああああああああ?

run_locally executeなので、localにログインらしい。。
ちょっとまてよ。なんだこれは。