Sha256: 5534c4206e499bb46db732ff1095ef4022c47379b7a84ee0796ad5d2d2432ac8

Contents?: true

Size: 576 Bytes

Versions: 2

Compression:

Stored size: 576 Bytes

Contents

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

Vagrant.configure('2') do |config|
  config.vm.hostname = 'omniauth-pam'
  config.vm.box = 'boxes-wheezy64-chef'
  config.vm.box_url = 'http://boxes.nickcharlton.net/wheezy64-chef-virtualbox.box'

  # forward a port for testing
  config.vm.network "forwarded_port", guest: 5000, host: 8080, auto_correct: true

  # ensure the basic packages exist to get it all working
  config.vm.provision 'shell', inline: 'sudo apt-get -yqq install git libpam0g-dev;'\
                                        'sudo gem install bundler foreman'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
omniauth-pam-1.2.1 Vagrantfile
omniauth-pam-1.2.0 Vagrantfile