143 lines
4.2 KiB
Ruby
Executable file
143 lines
4.2 KiB
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
# I know, we should be using something like puppet or chef but trust me, this
|
|
# started as a small script :-)
|
|
# Please check https://github.com/fgrehm/vagrant-lxc/issues/7 for the current status.
|
|
|
|
# In case something goes wrong after the machine has been set up, you can run this
|
|
# script again and it will ask you if you want to restore a clean snapshot.
|
|
|
|
raise 'You should not run this script from the dev box' if ENV['USER'] == 'vagrant'
|
|
|
|
require 'bundler'
|
|
require 'json'
|
|
|
|
IMAGE_ROOT = 'https://cloud-images.ubuntu.com/releases/quantal/release-20130206'
|
|
IMAGE_NAME = 'ubuntu-12.10-server-cloudimg-amd64-root.tar.gz'
|
|
|
|
def download(source, destination)
|
|
destination = "#{File.dirname __FILE__}/#{destination}"
|
|
return if File.exists?(destination)
|
|
|
|
sh "wget #{source} -O #{destination}"
|
|
end
|
|
|
|
def sh(cmd)
|
|
Bundler.with_clean_env do
|
|
puts cmd
|
|
raise 'Errored!' unless system cmd
|
|
end
|
|
end
|
|
|
|
def restore_snapshot!
|
|
sh 'vagrant halt -f'
|
|
conf = JSON.parse File.read('.vagrant')
|
|
id = conf['active']['default']
|
|
sh "VBoxManage snapshot '#{id}' restore ready-to-rock"
|
|
sh 'vagrant up'
|
|
exit 0
|
|
end
|
|
|
|
def vagrant_ssh(cmd)
|
|
sh "vagrant ssh -c '#{cmd}'"
|
|
end
|
|
|
|
Bundler.with_clean_env do
|
|
# Ensure box has not been created yet
|
|
unless `vagrant status` =~ /not created/
|
|
print 'Vagrant box already created, do you want to [r]ecreate it, restore [s]napshot or [A]bort? '
|
|
answer = gets.chomp
|
|
exit 0 if answer.empty? || answer =~ /^a/i
|
|
|
|
case
|
|
when answer =~ /^s/i
|
|
restore_snapshot!
|
|
when answer =~ /^r/i
|
|
sh 'vagrant destroy -f'
|
|
else
|
|
puts 'Invalid option!'
|
|
exit 1
|
|
end
|
|
end
|
|
end
|
|
|
|
# Cache development dependencies
|
|
`mkdir -p cache`
|
|
|
|
# Fetches vagrant submodule
|
|
`git submodule update --init`
|
|
|
|
# Download container image for building the base ubuntu-cloud box
|
|
download "#{IMAGE_ROOT}/#{IMAGE_NAME}", "boxes/ubuntu-cloud/#{IMAGE_NAME}"
|
|
|
|
# Start vagrant
|
|
sh 'vagrant up'
|
|
|
|
# Because I'm lazy ;)
|
|
vagrant_ssh 'echo "cd /vagrant" >> ~/.bashrc'
|
|
vagrant_ssh 'echo "alias be=\"bundle exec\"" >> ~/.bashrc'
|
|
|
|
# "be" archive is too slow for me
|
|
vagrant_ssh 'sudo sed -i -e "s/be.archive/br.archive/g" /etc/apt/sources.list'
|
|
|
|
# Ensure we have the latest packages around
|
|
vagrant_ssh "sudo apt-get update && sudo apt-get dist-upgrade -y"
|
|
|
|
# Ensure the machine can boot properly after upgrades and dependencies have been installed
|
|
sh 'vagrant reload'
|
|
|
|
# Install dependencies
|
|
vagrant_ssh "sudo apt-get install lxc rinetd libffi-dev bsdtar exuberant-ctags libffi-ruby ruby1.9.1-dev htop git virtualbox virtualbox-ose-dkms linux-headers-generic linux-headers-3.5.0-25-generic -y && sudo gem install bundler --no-ri --no-rdoc"
|
|
# vagrant_ssh "sudo dkms install virtualbox/4.1.18"
|
|
# vagrant_ssh "sudo service virtualbox start"
|
|
|
|
# Ensure the machine can boot properly after dependencies have been installed
|
|
sh 'vagrant reload'
|
|
|
|
# Allow gems to be installed on vagrant user home avoiding "sudo"s
|
|
# Tks to http://wiki.railsplayground.com/railsplayground/show/How+to+install+gems+and+non+root+user
|
|
vagrant_ssh 'mkdir -p ~/gems'
|
|
vagrant_ssh "cat << EOF >> ~/.profile
|
|
export GEM_HOME=$HOME/gems
|
|
export GEM_PATH=$HOME/gems:/var/lib/gems/1.9.1
|
|
export PATH=$PATH:$HOME/gems/bin
|
|
EOF"
|
|
vagrant_ssh "cat << EOF > .gemrc
|
|
---
|
|
:verbose: true
|
|
gem: --no-ri --no-rdoc
|
|
:update_sources: true
|
|
:sources:
|
|
- http://gems.rubyforge.org
|
|
- http://gems.github.com
|
|
:backtrace: false
|
|
:bulk_threshold: 1000
|
|
:benchmark: false
|
|
gemhome: $HOME/gems
|
|
gempath:
|
|
- $HOME/gems
|
|
- /usr/local/lib/ruby/gems/1.8
|
|
EOF"
|
|
|
|
# Backup rinetd config
|
|
vagrant_ssh "cp /etc/rinetd.conf /vagrant/cache/rinetd.conf"
|
|
|
|
# Make rinetd writable by vagrant user
|
|
vagrant_ssh 'sudo chown vagrant:vagrant /etc/rinetd.conf'
|
|
|
|
# Setup vagrant default ssh key
|
|
vagrant_keys_path = '/vagrant/vendor/vagrant/keys'
|
|
vagrant_ssh "mkdir -p ~/.ssh && cd /vagrant && cp #{vagrant_keys_path}/vagrant ~/.ssh/id_rsa && cp #{vagrant_keys_path}/vagrant.pub ~/.ssh/id_rsa.pub && chmod 600 ~/.ssh/id_rsa"
|
|
|
|
# Bundle!
|
|
vagrant_ssh 'cd /vagrant && bundle && cd /vagrant/example && bundle'
|
|
|
|
# Add base box
|
|
vagrant_ssh 'cd /vagrant && rake boxes:build:ubuntu-cloud'
|
|
|
|
# Click
|
|
sh 'vagrant halt'
|
|
conf = JSON.parse File.read('.vagrant')
|
|
id = conf['active']['default']
|
|
sh "VBoxManage snapshot '#{id}' take ready-to-rock"
|
|
sh 'vagrant up'
|