Mercurial > hg
view contrib/vagrant/Vagrantfile @ 26115:748347e0e8d4
revlog: move delta check to it's own function
This moves the delta vs fulltext comparison to its own function. This will allow
us to reuse the function in future patches for more efficient delta choices. As
a side effect, this will also allow extensions to modify our delta criteria.
author | Durham Goode <durham@fb.com> |
---|---|
date | Sun, 30 Aug 2015 13:33:00 -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