Advertisement
michaelpastes

Untitled

Jul 21st, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. package "git-core"
  2. package "zsh"
  3.  
  4. include_recipe "nginx::source"
  5.  
  6. user node[:user][:name] do
  7. password node[:user][:password]
  8. home "/home/#{node[:user][:name]}"
  9. supports manage_home: true
  10. shell "/bin/zsh"
  11. end
  12.  
  13. template "/home/#{node[:user][:name]}/.zshrc" do |variable|
  14. source "zshrc.erb"
  15. owner node[:user][:name]
  16.  
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement