$ vagrant init centos64
$ vagrant ssh-config --host harmoney >> ~/.ssh/config
$ vagrant up
$ vagrant sandbox on
$ vagrant sandbox rollback
$ vagrant sandbox commit
$ vagrant sandbox off
$ knife solo init chef-repo
$ cd chef-repo
$ knife solo prepare harmony
$ knife cookbook create hello -o site-cookbooks/
$ vim site-cookbooks/hello/recipes
log "Hello world"
$ vim nodes/harmoney.json
{
"run_list": [
"recipe[hello]"
]
}
$ knife solo cook harmony
$ gem i berkshelf --no-ri --no-rdoc
$ vim Berksfile
# 以下の3行を書いて保存
site :opscode
cookbook 'yum'
cookbook 'nginx'
$ berks install --path cookbooks