Add Debian 8 in Vagrant file

This commit is contained in:
Frederic Guillot 2015-05-21 13:34:39 -04:00
parent fb68231f2b
commit 4afe36083b
2 changed files with 9 additions and 0 deletions

6
Vagrantfile vendored
View File

@ -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

View File

@ -8,6 +8,7 @@ Several configurations are available:
- Ubuntu 14.04 LTS with Sqlite
- Ubuntu 14.04 LTS with Mysql
- Ubuntu 14.04 LTS with Postgresql
- Debian 8 with sqlite
- Debian 7.6 with Sqlite
- Debian 6 with Sqlite
- Centos 7 with Sqlite
@ -22,6 +23,7 @@ Standard boxes can be downloaded from Vagrant:
```bash
vagrant box add ubuntu/trusty64
vagrant box add debian/jessie64
vagrant box add chef/debian-7.6
vagrant box add chef/debian-6.0.10
vagrant box add chef/centos-7.0
@ -54,6 +56,7 @@ Available boxes are:
- `vagrant up sqlite`
- `vagrant up mysql`
- `vagrant up postgres`
- `vagrant up debian8`
- `vagrant up debian7`
- `vagrant up debian6`
- `vagrant up centos7`