Skip to content

Commit

Permalink
bump beats x64 versions to 8.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonEbel committed Aug 7, 2023
1 parent 17a12ea commit 380f673
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions dist/fetch_collectors.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#!/bin/bash

ARCHS=( x86 x86_64 )
FILEBEAT_VERSION=7.11.1
WINLOGBEAT_VERSION=7.11.1
AUDITBEAT_VERSION=7.11.1
FILEBEAT_VERSION=8.9.0
FILEBEAT_VERSION_32=7.17.12
WINLOGBEAT_VERSION=8.9.0
WINLOGBEAT_VERSION_32=7.17.12
AUDITBEAT_VERSION=8.9.0
AUDITBEAT_VERSION_32=7.17.12

# $1: beat name
# $2: beat operating system
Expand Down Expand Up @@ -39,11 +41,15 @@ download_beat()
esac
}

for ARCH in "${ARCHS[@]}"
do
download_beat "filebeat" "linux" ${FILEBEAT_VERSION} ${ARCH}
download_beat "filebeat" "windows" ${FILEBEAT_VERSION} ${ARCH}
download_beat "winlogbeat" "windows" ${WINLOGBEAT_VERSION} ${ARCH}
download_beat "auditbeat" "linux" ${AUDITBEAT_VERSION} ${ARCH}
done
download_beat "filebeat" "linux" ${FILEBEAT_VERSION} x86_64
download_beat "filebeat" "linux" ${FILEBEAT_VERSION_32} x86

download_beat "auditbeat" "linux" ${FILEBEAT_VERSION} x86_64
download_beat "auditbeat" "linux" ${AUDITBEAT_VERSION_32} x86

download_beat "filebeat" "windows" ${FILEBEAT_VERSION} x86_64
download_beat "filebeat" "windows" ${FILEBEAT_VERSION_32} x86

download_beat "winlogbeat" "windows" ${WINLOGBEAT_VERSION} x86_64
download_beat "winlogbeat" "windows" ${WINLOGBEAT_VERSION_32} x86

0 comments on commit 380f673

Please sign in to comment.