graylog-labs / graylog2-puppet

[DEPRECATED] Puppet module to install and manage a Graylog 1.x system.
https://www.graylog.org/
MIT License
10 stars 28 forks source link

RPMs and Java 7, 8 #22

Closed valerioj closed 9 years ago

valerioj commented 9 years ago

Hello. I'm using the Puppet modules to automatically install Graylog, and I found out that the Graylog packages require "java >= 1:1.7.0".

The problem is that java-1.8.0-openjdk provides "java = 1.8.0", i.e. they dropped the epoch notation "1:" in this version.

The result is that the RPMs will ask for version 1.7 even if version 8 is installed.

An alternative could be that the RPM requires jre >= 1.7.0 instead of java, which has the same notation for both versions (1.7.0 and 1.8.0 respectively).

Would it be possible to change that? Do you think of other alternatives?

Thanks in advance.

bernd commented 9 years ago

This has been addressed in Graylog2/fpm-recipes#34.

valerioj commented 9 years ago

thanks for the help!