File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed
buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -347,7 +347,8 @@ These are the linux flavors the Vagrantfile currently supports:
347347
348348* ubuntu-1404 aka trusty
349349* ubuntu-1604 aka xenial
350- * debian-8 aka jessie, the current debian stable distribution
350+ * debian-8 aka jessie
351+ * debian-9 aka stretch, the current debian stable distribution
351352* centos-6
352353* centos-7
353354* fedora-25
Original file line number Diff line number Diff line change @@ -33,13 +33,17 @@ Vagrant.configure(2) do |config|
3333 [ -f /usr/share/java/jayatanaag.jar ] || install jayatana
3434 SHELL
3535 end
36- # Wheezy's backports don't contain Openjdk 8 and the backflips required to
37- # get the sun jdk on there just aren't worth it. We have jessie for testing
38- # debian and it works fine.
36+ # Wheezy's backports don't contain Openjdk 8 and the backflips
37+ # required to get the sun jdk on there just aren't worth it. We have
38+ # jessie and stretch for testing debian and it works fine.
3939 config . vm . define "debian-8" do |config |
4040 config . vm . box = "elastic/debian-8-x86_64"
4141 deb_common config
4242 end
43+ config . vm . define "debian-9" do |config |
44+ config . vm . box = "elastic/debian-9-x86_64"
45+ deb_common config
46+ end
4347 config . vm . define "centos-6" do |config |
4448 config . vm . box = "elastic/centos-6-x86_64"
4549 rpm_common config
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ class VagrantTestPlugin implements Plugin<Project> {
1818 ' centos-6' ,
1919 ' centos-7' ,
2020 ' debian-8' ,
21+ ' debian-9' ,
2122 ' fedora-25' ,
2223 ' oel-6' ,
2324 ' oel-7' ,
You can’t perform that action at this time.
0 commit comments