Commit 89c7225 1 parent 8ebf5d3 commit 89c7225 Copy full SHA for 89c7225
File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ package-linux32: ## Create Linux i386 system package
97
97
fpm-cook -t deb package dist/recipe32.rb
98
98
fpm-cook -t rpm package dist/recipe32.rb
99
99
100
- package-windows : # # Create Windows installer
100
+ package-windows : prepare-package # # Create Windows installer
101
101
@mkdir -p dist/pkg
102
102
makensis -DVERSION=$(COLLECTOR_VERSION ) -DVERSION_SUFFIX=$(COLLECTOR_VERSION_SUFFIX ) -DREVISION=$(COLLECTOR_REVISION ) dist/recipe.nsi
103
103
dist/chocolatey/gensha.sh $(COLLECTOR_VERSION ) $(COLLECTOR_REVISION ) $(COLLECTOR_VERSION_SUFFIX )
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
ARCHS=( x86 x86_64 )
4
- FILEBEAT_VERSION=7.6.2
5
- WINLOGBEAT_VERSION=7.6.2
4
+ FILEBEAT_VERSION=7.11.1
5
+ WINLOGBEAT_VERSION=7.11.1
6
6
7
7
# $1: beat name
8
8
# $2: beat operating system
@@ -21,7 +21,7 @@ download_beat()
21
21
archive=" /tmp/${name} -${version} -${os} -${arch} .zip"
22
22
if [ ! -f $archive ]; then
23
23
echo " ==> Downloading ${name} -${version} -${os} -${arch} "
24
- curl -o $archive https://artifacts.elastic.co/downloads/beats/${name} /${name} -${version} -${os} -${arch} .zip
24
+ curl -o $archive https://artifacts.elastic.co/downloads/beats/${name} /${name} -oss- ${version} -${os} -${arch} .zip
25
25
fi
26
26
unzip -o -d dist/collectors/${name} /${os} /${arch} $archive
27
27
mv dist/collectors/${name} /${os} /${arch} /${name} -${version} -${os} -${arch} /* dist/collectors/${name} /${os} /${arch} /
@@ -31,7 +31,7 @@ download_beat()
31
31
archive=" /tmp/${name} -${version} -${os} -${arch} .tar.gz"
32
32
if [ ! -f $archive ]; then
33
33
echo " ==> Downloading ${name} -${version} -${os} -${arch} "
34
- curl -o $archive https://artifacts.elastic.co/downloads/beats/${name} /${name} -${version} -${os} -${arch} .tar.gz
34
+ curl -o $archive https://artifacts.elastic.co/downloads/beats/${name} /${name} -oss- ${version} -${os} -${arch} .tar.gz
35
35
fi
36
36
tar -xzf $archive --strip-components=1 -C dist/collectors/${name} /${os} /${arch}
37
37
;;
You can’t perform that action at this time.
0 commit comments