Sha256: 02167d2df780716cb78260c8f86e44ec1d24f7d287e0fe2f69d072806e13ff17

Contents?: true

Size: 1.12 KB

Versions: 5

Compression:

Stored size: 1.12 KB

Contents

Vagrant.configure('2') do |config|
  foo = Bib::Vagrant::Config.new
  puts foo.get.inspect

  # for testing ubuntu 14.04
  config.vm.box = 'trusty-server-cloudimg-amd64-vagrant-disk1.box'
  config.vm.box_url = 'https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box'

  # for testing ubuntu 15.04
  # config.vm.box = 'vivid-server-cloudimg-amd64-vagrant-disk1.box'
  # config.vm.box_url = 'https://cloud-images.ubuntu.com/vagrant/vivid/current/vivid-server-cloudimg-amd64-vagrant-disk1.box'

  # config.vm.provision :shell, :path => 'apt-spy-2-bootstrap.sh'

  config.vm.provision 'shell', inline: 'sudo apt-get -y update'

  # for testing the latest greatest npm
  # config.vm.provision 'shell', inline: 'sudo apt-get -y install curl'
  # config.vm.provision 'shell', inline: 'curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -'

  config.vm.provision 'shell', inline: 'sudo apt-get -y install nodejs npm'

  config.vm.provision 'bib_configure_npm'

  config.vm.provision 'shell', inline: 'npm config list'

  config.vm.provision 'shell', inline: 'npm --loglevel silly view test'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bib-vagrant-0.1.8 Vagrantfile
bib-vagrant-0.1.6 Vagrantfile
bib-vagrant-0.1.5 Vagrantfile
bib-vagrant-0.1.4 Vagrantfile
bib-vagrant-0.1.3 Vagrantfile