Skip to content

Commit

Permalink
Update params.pp
Browse files Browse the repository at this point in the history
Add Debian aarch64 support for splunkforwarder versions < 9.4.0.
  • Loading branch information
gerardkok authored Feb 21, 2025
1 parent 285f92f commit 597545b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,10 @@
$enterprise_package_name = 'splunk'
}
'Debian aarch64': {
$package_suffix = "${version}-${build}-${deb_prefix}-arm64.deb"
$package_suffix = versioncmp($version, '9.4.0') >= 0 ? {
true => "${version}-${build}-linux-arm64.deb",
false => "${version}-${build}-Linux-armv8.deb"
}
$forwarder_package_name = 'splunkforwarder'
$enterprise_package_name = 'splunk'
}
Expand Down

0 comments on commit 597545b

Please sign in to comment.