From 9f475e1932a87f287dd43738a47a287d00e6ee92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Leo=CC=81n?= Date: Mon, 28 Nov 2016 16:10:27 +0100 Subject: [PATCH] Rename Vagrant boxes Matching distro/name name --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 04733e1..290859e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,7 +6,7 @@ Vagrant.configure(2) do |config| vb.memory = "512" end - config.vm.define "centos" do |machine| + config.vm.define "centos-7" do |machine| machine.vm.box = "minimal/centos7" machine.vm.provision "shell", inline: "yum update -y" machine.vm.provision "ansible" do |ansible| @@ -14,7 +14,7 @@ Vagrant.configure(2) do |config| end end - config.vm.define "debian" do |machine| + config.vm.define "debian-jessie" do |machine| machine.vm.box = "minimal/jessie64" machine.vm.provision "shell", inline: "apt-get update && apt-get install -y python" machine.vm.provision "ansible" do |ansible|