summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2017-05-24 10:45:42 +0200
committervarac <varacanero@zeromail.org>2017-05-24 10:45:42 +0200
commitfcf2a122fd7b3f2679cd21cebd84f34291735f47 (patch)
tree4cb592303b0b029d82c0cf62ddb14cd8b00132e1 /Vagrantfile
parent33e0511001033fb62833a5205c96af66f042fc49 (diff)
Remove pixelated apt repo and deb vagrant box
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile10
1 files changed, 1 insertions, 9 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 5d8a66d5..5877050a 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "LEAP/jessie"
- config.vm.define "source", primary: true do |source|
+ config.vm.define "source" do |source|
source.vm.provision "puppet" do |puppet|
puppet.manifests_path = "provisioning/manifests"
puppet.module_path = "provisioning/modules"
@@ -14,14 +14,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end
end
- config.vm.define "deb", autostart: false do |deb|
- deb.vm.provision "puppet" do |puppet|
- puppet.manifests_path = "provisioning/manifests"
- puppet.module_path = "provisioning/modules"
- puppet.manifest_file = "deb.pp"
- end
- end
-
if /mswin|mingw/ =~ RUBY_PLATFORM
config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ".git/"
end