Skip to content

Instantly share code, notes, and snippets.

@msmith-thrillist
Created December 7, 2011 02:34
Show Gist options
  • Save msmith-thrillist/1441167 to your computer and use it in GitHub Desktop.
Save msmith-thrillist/1441167 to your computer and use it in GitHub Desktop.
Base Install - New Server
yum install -y gcc zlib zlib-devel openssl-devel
yum install -y httpd mod_ssl php52 php52-cli php52-common php52-devel php52-gd php52-imap php52-mbstring php52-mcrypt php52-mysql php52-pdo php52-pear php52-pecl php52-pecl-apc php52-xml
wget http://depot.thrillist.com/ruby/CURRENT
tar xvf CURRENT
cd ruby-1.8.7-p330
./configure --enable-pthread
make
make install
cd ..
rm -rf CURRENT
wget http://depot.thrillist.com/rubygems/CURRENT
tar xvf CURRENT
cd rubygems-1.8.11
ruby setup.rb
cd ..
rm -rf CURRENT
gem install puppet facter --no-rdoc --no-ri
@msmith-thrillist
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment