diff options
author | rafael lisboa <rafaelzlisboa@gmail.com> | 2015-05-07 13:43:58 -0300 |
---|---|---|
committer | rafael lisboa <rafaelzlisboa@gmail.com> | 2015-05-07 13:44:10 -0300 |
commit | 501d23847a6412508ffa95787159738a1d3e1389 (patch) | |
tree | f9135c123e757f82b5b0a1142ea11e00816e25c3 /Vagrantfile | |
parent | 17058bdaee4f0443f85591447dcb2c9ea0dce463 (diff) |
vagrant: roll back base box to wheezy since leap platform doesn't support jessie yet
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index 4102c424..00ce6899 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,7 +4,7 @@ VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.box = "LEAP/jessie" + config.vm.box = "LEAP/wheezy" config.vm.define "source", primary: true do |source| source.vm.provision "puppet" do |puppet| |