about summary refs log tree commit diff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2018-01-21 16:09:40 -0600
committerDavid Yip <yipdw@member.fsf.org>2018-01-21 16:09:40 -0600
commit81b78fac542be867eedc7a0310e29de30b382770 (patch)
tree2bb17d2f31a7f91fe52b7104008da5325b80b122 /Vagrantfile
parent2c578a01d86ef65d1b0117f6fff32a6b57463dde (diff)
Update Vagrantfile to ubuntu/xenial64.
The version of Redis that ships with Ubuntu Trusty is too old to support
the HyperLogLog commands.  I guess we could add a custom apt repo for
this, but it seems a lot easier to just use the latest Ubuntu LTS
release (i.e. xenial), which has a recent-enough Redis in its archives.
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 351ab5cfa..66fb2f27e 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -79,7 +79,7 @@ VAGRANTFILE_API_VERSION = "2"
 
 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
 
-  config.vm.box = "ubuntu/trusty64"
+  config.vm.box = "ubuntu/xenial64"
 
   config.vm.provider :virtualbox do |vb|
     vb.name = "mastodon"