Skip to content

Commit e659bfc

Browse files
committed
update to upstream release 6.0.1
1 parent 3010c1c commit e659bfc

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
X64?= false
22

3-
ES_FILE_VERSION=6.0.0
3+
ES_FILE_VERSION=6.0.1
44
ES_VERSION=$(ES_FILE_VERSION)
5-
ES_SHA512=b7830f61577c73fa06fad2b15f876dba5fb239099ce11035a2632035d35a41b25967bd03adb214ef3c286983e7fc3dc27daef1559f66cabd2b24d9394a10a6f8
5+
ES_SHA512=e5eca917aaa327ea5e12f05ad920db1080eeddc7582e30e86845e1ab0ed561bf0954e9f45da29ee360253829d1a4c78d518c3b0b33ebb1145aab0781ec122ba0
66
ES_NAME=elasticsearch-$(ES_VERSION)
77
ES_HOME=vendor/$(ES_NAME)
88
ES_LIB=$(ES_HOME)/lib

Vagrantfile-provision.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -209,19 +209,22 @@ choco install -y visualstudiocode -params '/NoDesktopIcon /NoQuicklaunchIcon'
209209
Bash 'cd /c/vagrant && make clean all'
210210

211211
# install elasticsearch.
212+
Write-Output 'Installing Elasticsearch...'
212213
Start-Process `
213214
(dir C:\vagrant\elasticsearch-*-setup*.exe).FullName `
214215
'/VERYSILENT','/SUPPRESSMSGBOXES' `
215216
-Wait
216217
# install plugins.
217218
function Install-ElasticsearchPlugin($name) {
219+
Write-Output "Installing the $name Elasticsearch plugin..."
218220
cmd /C "call ""C:\Program Files\Elasticsearch\bin\elasticsearch-plugin.bat"" install --silent $name"
219221
if ($LASTEXITCODE) {
220222
throw "failed to install Elasticsearch plugin $name with exit code $LASTEXITCODE"
221223
}
222224
}
223225
Install-ElasticsearchPlugin 'ingest-attachment'
224226
# start it.
227+
Write-Output 'Starting Elasticsearch...'
225228
Start-Service elasticsearch
226229

227230
# remove the default desktop shortcuts.

0 commit comments

Comments
 (0)