Sha256: 5d42f1197bfcc3450c9dd9ed5064bb21abec9da1b208c76593ceae8845f57ff5
Contents?: true
Size: 785 Bytes
Versions: 18
Compression:
Stored size: 785 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # All Vagrant configuration is done here. The most common configuration # options are documented and commented below. For a complete reference, # please see the online documentation at vagrantup.com. # Every Vagrant virtual environment requires a box to build off of. config.vm.box = "centos6.5.3" config.vm.box_url = 'https://github.com/2creatives/vagrant-centos/releases/download/v6.5.3/centos65-x86_64-20140116.box' # name config.vm.define "vagrant-centos" config.ssh.forward_agent = true config.vm.network "forwarded_port", guest: 22, host: 2210 end
Version data entries
18 entries across 18 versions & 1 rubygems