nixos/hadoop: fix hbase, hbase: 2.5.9 -> 2.5.10, 2.6.0 -> 2.6.1 (#366732)

This commit is contained in:
Sandro
2024-12-23 04:18:20 +01:00
committed by GitHub
2 changed files with 7 additions and 5 deletions
@@ -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}") [
+4 -4
View File
@@ -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 {