Last active
January 11, 2017 20:47
-
-
Save sax/9141596 to your computer and use it in GitHub Desktop.
Create omnibus chef on SmartOS
This file contains 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
pkgin -y install ruby193 gmake build-essential ; | |
gem install bundler --no-ri --no-rdoc | |
pushd /root | |
git clone https://github.com/opscode/omnibus-ruby | |
git clone https://github.com/opscode/omnibus-software | |
git clone https://github.com/opscode/omnibus-chef | |
pushd omnibus-chef | |
bundle install --binstubs | |
/root/omnibus-chef/bin/omnibus build project chef | |
popd; popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this work @sax?