File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
X64? = false
2
2
3
- ES_FILE_VERSION =6.0.0
3
+ ES_FILE_VERSION =6.0.1
4
4
ES_VERSION =$(ES_FILE_VERSION )
5
- ES_SHA512 =b7830f61577c73fa06fad2b15f876dba5fb239099ce11035a2632035d35a41b25967bd03adb214ef3c286983e7fc3dc27daef1559f66cabd2b24d9394a10a6f8
5
+ ES_SHA512 =e5eca917aaa327ea5e12f05ad920db1080eeddc7582e30e86845e1ab0ed561bf0954e9f45da29ee360253829d1a4c78d518c3b0b33ebb1145aab0781ec122ba0
6
6
ES_NAME =elasticsearch-$(ES_VERSION )
7
7
ES_HOME =vendor/$(ES_NAME )
8
8
ES_LIB =$(ES_HOME ) /lib
Original file line number Diff line number Diff line change @@ -209,19 +209,22 @@ choco install -y visualstudiocode -params '/NoDesktopIcon /NoQuicklaunchIcon'
209
209
Bash ' cd /c/vagrant && make clean all'
210
210
211
211
# install elasticsearch.
212
+ Write-Output ' Installing Elasticsearch...'
212
213
Start-Process `
213
214
(dir C:\vagrant\elasticsearch-*- setup* .exe).FullName `
214
215
' /VERYSILENT' , ' /SUPPRESSMSGBOXES' `
215
216
- Wait
216
217
# install plugins.
217
218
function Install-ElasticsearchPlugin ($name ) {
219
+ Write-Output " Installing the $name Elasticsearch plugin..."
218
220
cmd / C " call "" C:\Program Files\Elasticsearch\bin\elasticsearch-plugin.bat"" install --silent $name "
219
221
if ($LASTEXITCODE ) {
220
222
throw " failed to install Elasticsearch plugin $name with exit code $LASTEXITCODE "
221
223
}
222
224
}
223
225
Install-ElasticsearchPlugin ' ingest-attachment'
224
226
# start it.
227
+ Write-Output ' Starting Elasticsearch...'
225
228
Start-Service elasticsearch
226
229
227
230
# remove the default desktop shortcuts.
You can’t perform that action at this time.
0 commit comments