summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-05-21 13:34:39 -0400
committerFrederic Guillot <fred@kanboard.net>2015-05-21 13:34:39 -0400
commit4afe36083b0d25a3444923ef5b6be217a26e4e21 (patch)
treeddeef27ab5f5cddbec6f9a88ea6fc1f0733f2d7e /Vagrantfile
parentfb68231f2bb4fcbf0063ecc1e37279b5e125076b (diff)
Add Debian 8 in Vagrant file
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 924d4147..d745fc37 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -84,6 +84,12 @@ Vagrant.configure("2") do |config|
m.vm.synced_folder ".", "/var/www/html", owner: "www-data", group: "www-data"
end
+ config.vm.define "debian8" do |m|
+ m.vm.box = "debian/jessie64"
+ m.vm.provision "shell", inline: $script_sqlite
+ m.vm.synced_folder ".", "/var/www/html", owner: "www-data", group: "www-data"
+ end
+
config.vm.define "debian7" do |m|
m.vm.box = "chef/debian-7.6"
m.vm.provision "shell", inline: $script_sqlite