Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrank Becker2012-11-03 08:21:12 +0000
committerSteffen Pingel2012-11-03 10:57:08 +0000
commite0717fafc12b986f0ce8b455c526d58a1f00a938 (patch)
tree356f0faf96436f96da05586aea86bc7e4d065b6e /org.eclipse.mylyn.trac.releng/Vagrantfile
parentfd8f30615d6b29b6cf4678405d13205d8c271de6 (diff)
downloadorg.eclipse.mylyn.tasks-e0717fafc12b986f0ce8b455c526d58a1f00a938.tar.gz
org.eclipse.mylyn.tasks-e0717fafc12b986f0ce8b455c526d58a1f00a938.tar.xz
org.eclipse.mylyn.tasks-e0717fafc12b986f0ce8b455c526d58a1f00a938.zip
386344: provide standalone configuration for Trac VM
Diffstat (limited to 'org.eclipse.mylyn.trac.releng/Vagrantfile')
-rw-r--r--org.eclipse.mylyn.trac.releng/Vagrantfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.trac.releng/Vagrantfile b/org.eclipse.mylyn.trac.releng/Vagrantfile
new file mode 100644
index 000000000..adc58ac74
--- /dev/null
+++ b/org.eclipse.mylyn.trac.releng/Vagrantfile
@@ -0,0 +1,14 @@
+Vagrant::Config.run do |config|
+ config.vm.define :trac do |trac_config|
+ trac_config.vm.box = "lucid32"
+ trac_config.vm.box_url = "http://files.vagrantup.com/lucid32.box"
+
+ trac_config.vm.provision :puppet do |puppet|
+ puppet.module_path = "modules"
+ puppet.manifests_path = "modules/trac/manifests"
+ puppet.manifest_file = "trac.pp"
+ end
+ trac_config.vm.forward_port 80, 3080
+ trac_config.vm.forward_port 443, 3443
+ end
+end \ No newline at end of file

Back to the top