nixos/hadoop: fix hbase, hbase: 2.5.9 -> 2.5.10, 2.6.0 -> 2.6.1 (#366732)
This commit is contained in:
@@ -57,7 +57,9 @@ let
|
||||
systemd.services."hbase-${lib.toLower name}" = {
|
||||
description = "HBase ${name}";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
path = with cfg; [ hbase.package ] ++ optional (with cfg.hbase.master; enable && initHDFS) package;
|
||||
path =
|
||||
with cfg;
|
||||
[ hbase.package ] ++ lib.optional (with cfg.hbase.master; enable && initHDFS) package;
|
||||
preStart = lib.mkIf (with cfg.hbase.master; enable && initHDFS) (
|
||||
lib.concatStringsSep "\n" (
|
||||
map (x: "HADOOP_USER_NAME=hdfs hdfs --config /etc/hadoop-conf ${x}") [
|
||||
|
||||
@@ -51,13 +51,13 @@ in
|
||||
tests.standalone = nixosTests.hbase_2_4;
|
||||
};
|
||||
hbase_2_5 = common {
|
||||
version = "2.5.9";
|
||||
hash = "sha256-rJGeJ9zmUn28q1Sfk5cdEdEZxbAnvFjRjdcTCx9x1Qc=";
|
||||
version = "2.5.10";
|
||||
hash = "sha256-uYc5IZGQdLOm5gAEyyGtJtcgf+GxADEEuxjixZbG3Qs=";
|
||||
tests.standalone = nixosTests.hbase_2_5;
|
||||
};
|
||||
hbase_2_6 = common {
|
||||
version = "2.6.0";
|
||||
hash = "sha256-zjQ5HgUCiHmrMQuyMN4IAuLR0fVrJ+YKDUfPQb05Dp4=";
|
||||
version = "2.6.1";
|
||||
hash = "sha256-dubu/4Ilk82NtNEcKt8uLbcH8n81EncxOvkZOwk2kVA=";
|
||||
tests.standalone = nixosTests.hbase2;
|
||||
};
|
||||
hbase_3_0 = common {
|
||||
|
||||
Reference in New Issue
Block a user