Skip to content
This repository was archived by the owner on Feb 9, 2020. It is now read-only.

Commit 67b9c8c

Browse files
committed
Update the Vagrant box to Ubuntu 16.04, fix a typo in the IP address,
and install zlib1g-dev so the source will compile.
1 parent 30f078a commit 67b9c8c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Vagrantfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Vagrant.configure("2") do |config|
1111
# please see the online documentation at vagrantup.com.
1212

1313
# Every Vagrant virtual environment requires a box to build off of.
14-
config.vm.box = "precise64"
14+
config.vm.box = "ubuntu/xenial64"
1515

1616
# set ip address to 192.168.90.09
17-
config.vm.network "private_network", ip: "192.168.90.09", hostsupdater: "skip"
17+
config.vm.network "private_network", ip: "192.168.90.9", hostsupdater: "skip"
1818

1919
# set hostname
2020
config.vm.hostname = "guildmud.dev"

vagrant/provisioners/c.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22

33
apt-get update
4-
apt-get install -y make gcc gdb valgrind
4+
apt-get install -y make gcc gdb valgrind zlib1g-dev

0 commit comments

Comments
 (0)