Преглед изворни кода

Vagrantfile: Add entries to test/develop against Ubuntu 12.04 and 14.04

Lorenzo Villani пре 11 година
родитељ
комит
939b0a8585
1 измењених фајлова са 6 додато и 1 уклоњено
  1. 6
    1
      Vagrantfile

+ 6
- 1
Vagrantfile Прегледај датотеку

3
 # https://github.com/mitchellh/vagrant/blob/master/CHANGELOG.md#130-september-5-2013
3
 # https://github.com/mitchellh/vagrant/blob/master/CHANGELOG.md#130-september-5-2013
4
 
4
 
5
 Vagrant.configure('2') do |config|
5
 Vagrant.configure('2') do |config|
6
-  # Source: https://vagrantcloud.com/box-cutter/debian75
6
+  # Debian 7 is the officially supported Linux distribution
7
   config.vm.box = 'box-cutter/debian75'
7
   config.vm.box = 'box-cutter/debian75'
8
 
8
 
9
+  # Comment the entry above and uncomment one of these two entries
10
+  # below if you want to develop/test against Ubuntu 12.04/14.04.
11
+  # config.vm.box = 'box-cutter/ubuntu1204'
12
+  # config.vm.box = 'box-cutter/ubuntu1404'
13
+
9
   config.vm.provider :virtualbox do |v|
14
   config.vm.provider :virtualbox do |v|
10
     v.memory = 512
15
     v.memory = 512
11
   end
16
   end

Loading…
Откажи
Сачувај