Created
June 16, 2013 16:36
-
-
Save shiraji/5792582 to your computer and use it in GitHub Desktop.
いちいち、berkshelfをキックして、chef-soloをキックするのが面倒だったので・・・
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
#!/bin/sh | |
# get cookbooks using berkshelf | |
berks install --path cookbooks | |
# run chef-solo | |
if [ "$?" = "0" ] then | |
chef-solo -c solo.rb -j nodes/chef.json | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment