Skip to content

Instantly share code, notes, and snippets.

@mdespuits
Created June 29, 2012 05:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdespuits/3016092 to your computer and use it in GitHub Desktop.
Save mdespuits/3016092 to your computer and use it in GitHub Desktop.
Chef Solo Setup for Ubuntu 12.04
#!/usr/bin/env bash
apt-get -y update
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline-gplv2-dev libyaml-dev
cd /tmp
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz
tar -xvzf ruby-1.9.3-p194.tar.gz
cd ruby-1.9.3-p194/
./configure --prefix=/usr/local
make
make install
gem install chef ruby-shadow --no-ri --no-rdoc
#!/usr/bin/env bash
apt-get -y update
apt-get -y install curl git-core build-essential zlib1g-dev libssl-dev libreadline5-dev libyaml-dev
curl -L https://raw.github.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash
echo "export RBENV_ROOT=\"\${HOME}/.rbenv\"
if [ -d \"\${RBENV_ROOT}\" ]; then
export PATH=\"\${RBENV_ROOT}/bin:\${PATH}\"
eval \"\$(rbenv init -)\"
fi" | cat - ~/.bashrc > temp && mv temp ~/.bashrc
source ~/.bashrc
cd
rbenv install 1.9.3-p194
rbenv global 1.9.3-p194
rbenv rehash
gem install bundler --no-ri --no-rdoc
gem install chef ruby-shadow --no-ri --no-rdoc
cd
source .bashrc
#!/usr/bin/env bash
apt-get -y update
apt-get -y install curl git-core build-essential zlib1g-dev libssl-dev libreadline6-dev libyaml-dev
curl -L https://raw.github.com/fesplugas/rbenv-installer/master/bin/rbenv-installer | bash
echo "export RBENV_ROOT=\"\${HOME}/.rbenv\"
if [ -d \"\${RBENV_ROOT}\" ]; then
export PATH=\"\${RBENV_ROOT}/bin:\${PATH}\"
eval \"\$(rbenv init -)\"
fi" | cat - ~/.bashrc > temp && mv temp ~/.bashrc
source ~/.bashrc
cd
rbenv install 1.9.3-p194
rbenv global 1.9.3-p194
rbenv rehash
gem install bundler --no-ri --no-rdoc
gem install chef ruby-shadow --no-ri --no-rdoc
cd
source .bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment