Skip to content

Commit

Permalink
changed username to the node user in the remote directory calls
Browse files Browse the repository at this point in the history
  • Loading branch information
mraaroncruz committed Aug 31, 2011
1 parent 47095a0 commit 9c4a588
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cookbooks/pferdefleisch/recipes/default.rb
Expand Up @@ -16,21 +16,21 @@
end
end

include_recipe "rvm::system"
# include_recipe "rvm::system"

execute 'update rubygems' do
user 'root'
command 'gem update --system'
action :run
end

cookbook_file "/home/vagrant/.vimrc" do
cookbook_file "/home/#{node[:user]}/.vimrc" do
source 'vimrc'
owner node[:user]
group node[:user]
end

remote_directory '/home/vagrant/.vim' do
remote_directory "/home/#{node[:user]}/.vim" do
source 'vim'
files_owner node[:user]
files_group node[:user]
Expand Down

0 comments on commit 9c4a588

Please sign in to comment.