Skip to content
This repository was archived by the owner on Jul 7, 2018. It is now read-only.

Commit 398b6d1

Browse files
committed
Upgrade box [skip ci]
1 parent dc49a5b commit 398b6d1

File tree

2 files changed

+19
-20
lines changed

2 files changed

+19
-20
lines changed

Vagrantfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
1010
# please see the online documentation at vagrantup.com.
1111

1212
# Every Vagrant virtual environment requires a box to build off of.
13-
config.vm.box = "wily64"
14-
config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/wily/current/wily-server-cloudimg-amd64-vagrant-disk1.box"
13+
config.vm.box = "bento/ubuntu-16.04"
1514

1615
# Disable automatic box update checking. If you disable this, then
1716
# boxes will only be checked for updates when the user runs

provision/provision.sh

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,24 @@ sudo mkdir -p /var/www/html/
3131
sudo chown -R vagrant:vagrant /var/www
3232

3333
# Requirements to build php from sources, uncomment if you decide to do so
34-
#sudo apt-get install -y \
35-
# libxml2-dev \
36-
# libcurl4-openssl-dev \
37-
# libjpeg-dev \
38-
# libpng-dev \
39-
# libxpm-dev \
40-
# libmcrypt-dev \
41-
# libmysqlclient-dev \
42-
# libpq-dev \
43-
# libicu-dev \
44-
# libfreetype6-dev \
45-
# libldap2-dev \
46-
# libxslt-dev \
47-
# libbz2-dev \
48-
# libreadline-dev \
49-
# autoconf \
50-
# libtool \
51-
# pkg-config
34+
sudo apt-get install -y \
35+
libxml2-dev \
36+
libcurl4-openssl-dev \
37+
libjpeg-dev \
38+
libpng-dev \
39+
libxpm-dev \
40+
libmcrypt-dev \
41+
libmysqlclient-dev \
42+
libpq-dev \
43+
libicu-dev \
44+
libfreetype6-dev \
45+
libldap2-dev \
46+
libxslt-dev \
47+
libbz2-dev \
48+
libreadline-dev \
49+
autoconf \
50+
libtool \
51+
pkg-config
5252

5353
# Valgrind for investigating and plumbing memory-related problems
5454
sudo apt-get install valgrind

0 commit comments

Comments
 (0)