diff --git a/qa/vagrant/README.md b/qa/vagrant/README.md index ce253a2e3e002..801c3e52673a3 100644 --- a/qa/vagrant/README.md +++ b/qa/vagrant/README.md @@ -82,38 +82,26 @@ In general it's probably best to avoid running external commands when a good Java alternative exists. For example most filesystem operations can be done with the java.nio.file APIs. For those that aren't, use an instance of [Shell](src/main/java/org/elasticsearch/packaging/util/Shell.java) -Despite the name, commands run with this class are not run in a shell, and any -familiar features of shells like variables or expansion won't work. - -If you do need the shell, you must explicitly invoke the shell's command. For -example to run a command with Bash, use the `bash -c command` syntax. Note that -the entire script must be in a single string argument +This class runs scripts in either bash with the `bash -c