summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitrios Liappis <dimitrios.liappis@gmail.com>2017-05-04 14:21:28 +0300
committerDimitrios Liappis <dimitrios.liappis@gmail.com>2017-05-04 14:29:35 +0300
commitee6deb34d08185ef51b87c3f089f801cb0e47c2f (patch)
tree82f10f4aa94b59b0d5eedb43f5020f48ee90f023
parent01872f364904cc3ec953745db6792ce0d5df1a04 (diff)
Tests: Switch to fedora-25 in test plugin
Use fedora-25 Vagrant box in VagrantTestPlugin, which was missing from 9a3ab3e8000be059ccf4edeee53b62ddb5913fc6 causing packaging test failures. Additionally update TESTING.asciidoc
-rw-r--r--TESTING.asciidoc6
-rw-r--r--buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant/VagrantTestPlugin.groovy2
2 files changed, 4 insertions, 4 deletions
diff --git a/TESTING.asciidoc b/TESTING.asciidoc
index 216100c07d..f8a54abee8 100644
--- a/TESTING.asciidoc
+++ b/TESTING.asciidoc
@@ -350,7 +350,7 @@ These are the linux flavors the Vagrantfile currently supports:
* debian-8 aka jessie, the current debian stable distribution
* centos-6
* centos-7
-* fedora-24
+* fedora-25
* oel-6 aka Oracle Enterprise Linux 6
* oel-7 aka Oracle Enterprise Linux 7
* sles-12
@@ -436,13 +436,13 @@ vagrantUbuntu1604#up.
Once up, you can then connect to the VM using SSH from the elasticsearch directory:
-------------------------------------------------
-vagrant ssh fedora-24
+vagrant ssh fedora-25
-------------------------------------------------
Or from another directory:
-------------------------------------------------
-VAGRANT_CWD=/path/to/elasticsearch vagrant ssh fedora-24
+VAGRANT_CWD=/path/to/elasticsearch vagrant ssh fedora-25
-------------------------------------------------
Note: Starting vagrant VM outside of the elasticsearch folder requires to
diff --git a/buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant/VagrantTestPlugin.groovy b/buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant/VagrantTestPlugin.groovy
index 2fb047e930..d314258766 100644
--- a/buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant/VagrantTestPlugin.groovy
+++ b/buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant/VagrantTestPlugin.groovy
@@ -17,7 +17,7 @@ class VagrantTestPlugin implements Plugin<Project> {
'centos-6',
'centos-7',
'debian-8',
- 'fedora-24',
+ 'fedora-25',
'oel-6',
'oel-7',
'opensuse-13',