Sha256: 5b0af820311eb4e43255283f4cb98e17fec57141ee60c8b9bbe1cc523416e233

Contents?: true

Size: 1.57 KB

Versions: 1

Compression:

Stored size: 1.57 KB

Contents

# -*- mode: ruby -*-
# vi: set ft=ruby :

# Not really needed, but useful while developing so that vagrant picks it up
Vagrant.require_plugin 'vagrant-lxc'
Vagrant.require_plugin 'vagrant-omnibus'

Vagrant.configure("2") do |config|
  config.vm.synced_folder "/tmp", "/vagrant_data"

  config.vm.provider :lxc do |lxc|
    lxc.customize 'cgroup.memory.limit_in_bytes', '400M'
    lxc.customize 'cgroup.memory.memsw.limit_in_bytes', '500M'
  end

  config.vm.provision :shell, :inline => <<-SCRIPT
echo "Hi there I'm a shell script used for provisioning"
  SCRIPT

  config.vm.provision :puppet do |puppet|
    puppet.module_path    = "puppet/modules"
    puppet.manifests_path = "puppet/manifests"
    puppet.manifest_file  = "site.pp"
  end

  port     = 8080
  releases = %w(precise quantal raring wheezy squeeze sid)
  releases.each do |release|
    config.vm.define(release) do |lxc_config|
      lxc_config.vm.box      = "#{release}64"
      lxc_config.vm.box_url  = "http://dl.dropbox.com/u/13510779/lxc-#{release}-amd64-2013-07-12.box"
      # Uncomment if you want to try out a box built locally
      # lxc_config.vm.box_url  = "../boxes/output/lxc-#{release}-amd64-2013-07-12.box"
      lxc_config.vm.network :forwarded_port, guest: 80, host: (port += 1)
      lxc_config.vm.hostname = "lxc-#{release}64-example"

      if %w(precise quantal raring squeeze).include? release
        lxc_config.omnibus.chef_version = :latest

        lxc_config.vm.provision :chef_solo do |chef|
          chef.add_recipe "hello-world"
          chef.log_level = :debug
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-lxc-0.4.0 example/Vagrantfile