Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Upgrade Vagrantfiles to Ubuntu 14.10
Browse files Browse the repository at this point in the history
  • Loading branch information
awh committed Apr 21, 2015
1 parent 753462b commit 8d73d63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ pkgs = "lxc-docker aufs-tools build-essential ethtool iputils-arping libpcap-dev

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

config.vm.box = "phusion/ubuntu-14.04-amd64"
config.vm.box_url = "https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/ubuntu-14.04-amd64-vbox.box"
config.vm.box = "ubuntu/ubuntu-14.10-amd64"
config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/utopic/current/utopic-server-cloudimg-amd64-vagrant-disk1.box"

config.vm.network "private_network", ip: vm_ip
config.vm.provider :virtualbox do |vb|
Expand Down
4 changes: 2 additions & 2 deletions test/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ ip_suffix_base = 10
def configure_docker(host, hostname, ip)
pkgs = "lxc-docker ethtool"

host.vm.box = "phusion/ubuntu-14.04-amd64"
host.vm.box_url = "https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/ubuntu-14.04-amd64-vbox.box"
host.vm.box = "ubuntu/ubuntu-14.10-amd64"
host.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/utopic/current/utopic-server-cloudimg-amd64-vagrant-disk1.box"

host.vm.hostname = hostname
host.vm.network "private_network", ip: ip
Expand Down

0 comments on commit 8d73d63

Please sign in to comment.