Repository: aurora-packaging Updated Branches: refs/heads/master f46147cde -> e7878f9c1
Remove openjdk runtime requirement. This addresses one of my +0s. Testing Done: Using a clean vagrant environment installed aurora, then installed the oracle jdk, then uninstalled java-1.8.0-openjdk-headless (that aurora brought in transitively). RPM didn't complain and when I restarted the scheduler it was running under the new JVM. ``` [vagrant@localhost ~]$ curl -s http://localhost:8081/vars | grep 'jvm_prop_java_vendor ' jvm_prop_java_vendor Oracle Corporation [vagrant@localhost ~]$ ``` Reviewed at https://reviews.apache.org/r/38080/ Project: http://git-wip-us.apache.org/repos/asf/aurora-packaging/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora-packaging/commit/e7878f9c Tree: http://git-wip-us.apache.org/repos/asf/aurora-packaging/tree/e7878f9c Diff: http://git-wip-us.apache.org/repos/asf/aurora-packaging/diff/e7878f9c Branch: refs/heads/master Commit: e7878f9c1d7afe021412d7f8ea10f698859eb0f8 Parents: f46147c Author: Kevin Sweeney <[email protected]> Authored: Wed Sep 2 17:45:46 2015 -0700 Committer: Kevin Sweeney <[email protected]> Committed: Wed Sep 2 17:45:46 2015 -0700 ---------------------------------------------------------------------- specs/rpm/aurora.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora-packaging/blob/e7878f9c/specs/rpm/aurora.spec ---------------------------------------------------------------------- diff --git a/specs/rpm/aurora.spec b/specs/rpm/aurora.spec index 2e4ff64..cf9c271 100644 --- a/specs/rpm/aurora.spec +++ b/specs/rpm/aurora.spec @@ -96,7 +96,7 @@ BuildRequires: zlib-devel %if 0%{?rhel} && 0%{?rhel} < 7 Requires: daemonize %endif -Requires: java-%{JAVA_VERSION}-openjdk +Requires: java-%{JAVA_VERSION} Requires: mesos = %{MESOS_VERSION}
