Last active
August 29, 2015 14:08
-
-
Save okisanjp/ffc1ad9de1788fc2c733 to your computer and use it in GitHub Desktop.
Chef-solo:レシピの中でChef実行中のユーザー名を使う ref: http://qiita.com/okisanjp/items/b039e2da328b21836bdc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git "/home/#{node['current_user']}/dotfiles" do | |
| repository "https://github.com/okisanjp/dotfiles.git" | |
| revision "master" | |
| user node['current_user'] | |
| group node['current_user'] | |
| action :sync | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment