Mercurial > hg
view contrib/vagrant/Vagrantfile @ 22221:e75b1a3c1dbc
obsstore: add fields attribute to track each field in a marker
We are going to increase the amount of data explicitly stored in obsolescence
markers. This mean we are going to have a longer tuple and some values will be
shuffled around. So we add a ``fields`` attribute to the obsstore class to
keep track of what entry is what. This will be useful for extensions and for
documentation purpose.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Tue, 12 Aug 2014 01:49:38 -0700 |
parents | 8da01b6e7b49 |
children | a31ffc445f02 |
line wrap: on
line source
# -*- mode: ruby -*- Vagrant.configure('2') do |config| # Debian 7.4 32-bit i386 without configuration management software config.vm.box = "puppetlabs/debian-7.4-32-nocm" #config.vm.box = "pnd/debian-wheezy32-basebox" config.vm.hostname = "tests" config.vm.define "tests" do |conf| conf.vm.provision :file, source: "run-tests.sh", destination:"run-tests.sh" conf.vm.provision :shell, path: "provision.sh" conf.vm.synced_folder "../..", "/hgshared" end end