Sha256: acc7859ad7c764e49ee3b71df51e3ad0f6f5c570b9993580380652f99b4c7612
Contents?: true
Size: 1.15 KB
Versions: 1
Compression:
Stored size: 1.15 KB
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") 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 = "ubuntu-12.04-updated" # The url from where the 'config.vm.box' box will be fetched if it # doesn't already exist on the user's system. config.vm.box_url = "http://bit.ly/1488yGQ" # Create a forwarded port mapping which allows access to a specific port # within the machine from a port on the host machine. In the example below, # accessing "localhost:8080" will access port 80 on the guest machine. config.vm.network :forwarded_port, guest: 8888, host: 8888 # Enable provisioning with chef solo, specifying a cookbooks path, roles # path, and data_bags path (all relative to this Vagrantfile), and adding # some recipes and/or roles. # config.vm.provision :chef_solo do |chef| chef.add_recipe "build-essential" chef.add_recipe "apt" chef.add_recipe "btsync" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
BtSync-0.6.2 | Vagrantfile |