Skip to content

Commit 760faa2

Browse files
committed
Fix Vagrantfile bitrot.
1 parent 616ea90 commit 760faa2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Vagrantfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2"
66

77
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
88
# We base ourselves off a Debian fork of the official Debian jessie64 base box.
9-
config.vm.box = "sandstorm/debian-jessie64"
9+
config.vm.box = "debian/contrib-stretch64"
1010

1111
# We forward port 6080, the Sandstorm web port, so that developers can
1212
# visit their sandstorm app from their browser as local.sandstorm.io:6080
@@ -26,6 +26,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
2626
cd /vagrant
2727
echo localhost > /etc/hostname
2828
hostname localhost
29+
sudo apt-get install -y curl
2930
sudo OVERRIDE_DEFAULT_SERVER_USER=vagrant ./install.sh -d -e > /dev/null
3031
sudo sed --in-place='' --expression='s/^BIND_IP=.*/BIND_IP=0.0.0.0/' /opt/sandstorm/sandstorm.conf
3132
sudo service sandstorm restart

0 commit comments

Comments
 (0)