Sha256: 24c22ca54fab650bbd00615189ca307eb84fad7a05dbfcd779bae1020eabf0bc

Contents?: true

Size: 1.79 KB

Versions: 154

Compression:

Stored size: 1.79 KB

Contents

Vagrant.require_version '!= 1.8.5' # OpenBSD can't be halted in 1.8.5

Vagrant.configure('2') do |config|
  # don't mess with keys
  config.ssh.insert_key = false

  # doesn't make sense to check updates for local boxes
  config.vm.box_check_update = false

  # there are no guest additions
  config.vm.provider 'virtualbox' do |vb|
    vb.check_guest_additions = false
    vb.customize ['modifyvm', :id, '--groups', '/image_optim']
  end

  # handle manually using rsync
  config.vm.synced_folder '.', '/vagrant', disabled: true

  {
    'linux-x86_64'  => 'ubuntu/trusty64',
    'linux-i686'    => 'ubuntu/trusty32',
    'freebsd-amd64' => 'boxes/freebsd-amd64.box',
    'freebsd-i386'  => 'boxes/freebsd-i386.box',
    'openbsd-amd64' => 'boxes/openbsd-amd64.box',
    'openbsd-i386'  => 'boxes/openbsd-i386.box',
  }.each do |name, location|
    config.vm.define name do |machine|
      machine.vm.hostname = name.gsub('_', '-')
      machine.vm.box = location

      machine.vm.provision :shell, inline: case name
      when /^linux/
        <<-SH
          set -ex
          apt-get -y install rsync ntpdate make wget gcc g++ chrpath perl pkg-config autoconf automake libtool nasm
        SH
      when /^freebsd/
        <<-SH
          set -ex
          pkg install -y rsync gmake wget gcc chrpath perl5 pkgconf autoconf automake libtool nasm
        SH
      when /^openbsd/
        <<-SH
          set -ex
          pkg_add -z rsync-- ntp gmake gtar-- wget g++-4.8.2p2 autoconf-2.69 automake-1.14.1 libtool nasm
          path=/home/vagrant/shared
          mkdir -p $path
          chown vagrant:vagrant $path
          ln -nfs $path /vagrant
        SH
      end

      machine.vm.provision :shell, inline: <<-SH
        set -ex
        mkdir -p /vagrant
        chown vagrant:vagrant /vagrant
      SH
    end
  end
end

Version data entries

154 entries across 154 versions & 1 rubygems

Version Path
image_optim_pack-0.5.0.20180605-x86_64-openbsd Vagrantfile
image_optim_pack-0.5.0.20180605-x86-openbsd Vagrantfile
image_optim_pack-0.5.0.20180605-x86_64-linux Vagrantfile
image_optim_pack-0.5.0.20180605-x86-linux Vagrantfile
image_optim_pack-0.5.0.20180605-x86-freebsd Vagrantfile
image_optim_pack-0.5.0.20180605-amd64-freebsd Vagrantfile
image_optim_pack-0.5.0.20180605-x86_64-darwin Vagrantfile
image_optim_pack-0.5.0.20180605-x86-darwin Vagrantfile
image_optim_pack-0.5.0.20180605 Vagrantfile
image_optim_pack-0.5.0.20180419-x86_64-openbsd Vagrantfile
image_optim_pack-0.5.0.20180419-x86-openbsd Vagrantfile
image_optim_pack-0.5.0.20180419-x86_64-linux Vagrantfile
image_optim_pack-0.5.0.20180419-x86-linux Vagrantfile
image_optim_pack-0.5.0.20180419-x86-freebsd Vagrantfile
image_optim_pack-0.5.0.20180419-amd64-freebsd Vagrantfile
image_optim_pack-0.5.0.20180419-x86_64-darwin Vagrantfile
image_optim_pack-0.5.0.20180419-x86-darwin Vagrantfile
image_optim_pack-0.5.0.20180419 Vagrantfile
image_optim_pack-0.5.0.20180401-x86_64-openbsd Vagrantfile
image_optim_pack-0.5.0.20180401-x86-openbsd Vagrantfile