Skip to content

Instantly share code, notes, and snippets.

@pmorton
pmorton / ubuntu-12.04-gems.erb
Created May 24, 2012 16:35 — forked from hmalphettes/ubuntu-12.04-gems.erb
Chef bootstrap with RVM on Ubuntu 12.04
bash -c '
UBUNTU_MIRROR=us-west-1.ec2.archive.ubuntu.com.s3.amazonaws.com
RUBY_VERSION=1.9.3-p194
echo "Updating the Ubuntu Mirror Source"
touch /etc/apt/sources.list
if [ "$?" != "0" ]; then
echo "Failed to touch /etc/apt/sources.list. are you root?"
exit 1
@pmorton
pmorton / es.sh
Created March 17, 2012 20:05 — forked from byung82/es.sh
Install ElasticSearch on CentOS 6
cd ~
sudo yum update
sudo yum java-1.6.0-openjdk.i686 -y
wget https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.18.6.tar.gz -O elasticsearch.tar.gz
tar -xf elasticsearch.tar.gz
rm elasticsearch.tar.gz
sudo mv elasticsearch-* elasticsearch
sudo mv elasticsearch /usr/local/share