summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorDaniel King <northerner@users.noreply.github.com>2018-02-04 05:03:01 +0000
committerEugen Rochko <eugen@zeonfederated.com>2018-02-04 06:03:01 +0100
commit258dcb849f2146069a2b2914cea3a28619f55c90 (patch)
tree0b66502f76415d1dec9f74b472845d53923f5585 /Vagrantfile
parent4e4f1b0dcb386464d653fcce765ca775e566a03c (diff)
Upgrade Vagrant box to Xenial (#6421)
* upgrade vagrant box to xenial this allows the redis version to be upgraded to support the new redis features used in the activity tracker * add libpam0g package to vagrant box this is required for native extensions of gems to build after the addition of PAM support was added in #5303
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index bbe3b7f3b10..ddcdf351024 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -39,6 +39,7 @@ sudo apt-get install \
libidn11-dev \
libprotobuf-dev \
libreadline-dev \
+ libpam0g-dev \
-y
# Install rvm
@@ -79,7 +80,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"