Sha256: b9f5352f3343c60483de1c61b412354edb1794123405afe4c8cd0030a2afa3bd

Contents?: true

Size: 1.41 KB

Versions: 4

Compression:

Stored size: 1.41 KB

Contents

#!/usr/bin/env bash
set -x  # turn on tracing

# A url directory with the scripts you'd like to stuff into the machine
REMOTE_FILE_URL_BASE="http://github.com/infochimps/wukong"

# echo "`date` Broaden the apt universe"
# sudo bash -c 'echo "deb http://ftp.us.debian.org/debian  lenny  multiverse restricted universe" >> /etc/apt/sources.list.d/multiverse.list'

# Do a non interactive apt-get so the user is never prompted for input
export DEBIAN_FRONTEND=noninteractive

# Update package index and update the basic system files to newest versions
echo "`date` Apt update" 
sudo apt-get -y update  ;
sudo dpkg --configure -a
echo "`date` Apt upgrade, could take a while" 
sudo apt-get -y safe-upgrade
echo "`date` Apt install" 
sudo apt-get -f install ;

echo "`date` Installing base packages"
# libopenssl-ruby1.8 ssl-cert 
sudo apt-get install -y unzip build-essential git-core ruby ruby1.8-dev rubygems ri irb build-essential wget git-core zlib1g-dev libxml2-dev;
echo "`date` Unchaining rubygems from the tyrrany of ubuntu" 
sudo gem install --no-rdoc --no-ri rubygems-update --version=1.3.7 ; sudo /var/lib/gems/1.8/bin/update_rubygems; sudo gem update --no-rdoc --no-ri --system ; gem --version ;

echo "`date` Installing wukong and related gems" 
sudo gem install --no-rdoc --no-ri addressable extlib htmlentities configliere yard wukong right_aws uuidtools cheat
sudo gem list 

echo "`date` Wukong bootstrap complete: `date`" 
true

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
wukong-3.0.0.pre old/examples/emr/dot_wukong_dir/emr_bootstrap.sh
wukong-2.0.2 examples/emr/dot_wukong_dir/emr_bootstrap.sh
wukong-2.0.1 examples/emr/dot_wukong_dir/emr_bootstrap.sh
wukong-2.0.0 examples/emr/dot_wukong_dir/emr_bootstrap.sh