diff options
author | Bruno Wagner <bwagner@riseup.net> | 2015-12-28 14:34:29 -0200 |
---|---|---|
committer | Bruno Wagner <bwagner@riseup.net> | 2015-12-28 14:34:29 -0200 |
commit | 6f2b1c1d57d969ea18ada7ebb17fa442c23f88df (patch) | |
tree | a9f5c176be7876db0fffaf518533bed940fff718 /Vagrantfile | |
parent | e7d29d761a76f41f8736900d055d9b5fbf8a821b (diff) |
Changed vagrant box to new LEAP jessie box
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Vagrantfile b/Vagrantfile index bcce292e..30e8c89b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -10,11 +10,7 @@ unless Vagrant.has_plugin?('vagrant-vbguest') end Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.box = "debian/jessie64" - config.vm.box_version = "= 8.2.1" - - config.vm.provision "shell", inline: "sudo /etc/init.d/vboxadd setup" - config.vm.provision "shell", inline: "apt-get install -y puppet" + config.vm.box = "LEAP/jessie" config.vm.define "source", primary: true do |source| source.vm.provision "puppet" do |puppet| |