Skip to content

Commit

Permalink
update to upstream release 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rgl committed Dec 12, 2017
1 parent 3010c1c commit e659bfc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
X64?= false

ES_FILE_VERSION=6.0.0
ES_FILE_VERSION=6.0.1
ES_VERSION=$(ES_FILE_VERSION)
ES_SHA512=b7830f61577c73fa06fad2b15f876dba5fb239099ce11035a2632035d35a41b25967bd03adb214ef3c286983e7fc3dc27daef1559f66cabd2b24d9394a10a6f8
ES_SHA512=e5eca917aaa327ea5e12f05ad920db1080eeddc7582e30e86845e1ab0ed561bf0954e9f45da29ee360253829d1a4c78d518c3b0b33ebb1145aab0781ec122ba0
ES_NAME=elasticsearch-$(ES_VERSION)
ES_HOME=vendor/$(ES_NAME)
ES_LIB=$(ES_HOME)/lib
Expand Down
3 changes: 3 additions & 0 deletions Vagrantfile-provision.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -209,19 +209,22 @@ choco install -y visualstudiocode -params '/NoDesktopIcon /NoQuicklaunchIcon'
Bash 'cd /c/vagrant && make clean all'

# install elasticsearch.
Write-Output 'Installing Elasticsearch...'
Start-Process `
(dir C:\vagrant\elasticsearch-*-setup*.exe).FullName `
'/VERYSILENT','/SUPPRESSMSGBOXES' `
-Wait
# install plugins.
function Install-ElasticsearchPlugin($name) {
Write-Output "Installing the $name Elasticsearch plugin..."
cmd /C "call ""C:\Program Files\Elasticsearch\bin\elasticsearch-plugin.bat"" install --silent $name"
if ($LASTEXITCODE) {
throw "failed to install Elasticsearch plugin $name with exit code $LASTEXITCODE"
}
}
Install-ElasticsearchPlugin 'ingest-attachment'
# start it.
Write-Output 'Starting Elasticsearch...'
Start-Service elasticsearch

# remove the default desktop shortcuts.
Expand Down

0 comments on commit e659bfc

Please sign in to comment.