Merge pull request #146734 from VergeDX/hbase
nixos/hbase: Fix missing top-level in hbase-site.xml
This commit is contained in:
commit
96ab4535d0
1 changed files with 4 additions and 1 deletions
|
@ -22,7 +22,10 @@ let
|
||||||
configAttr));
|
configAttr));
|
||||||
|
|
||||||
configFile = pkgs.writeText "hbase-site.xml"
|
configFile = pkgs.writeText "hbase-site.xml"
|
||||||
(buildProperty (defaultConfig // cfg.settings));
|
''<configuration>
|
||||||
|
${buildProperty (defaultConfig // cfg.settings)}
|
||||||
|
</configuration>
|
||||||
|
'';
|
||||||
|
|
||||||
configDir = pkgs.runCommand "hbase-config-dir" { preferLocalBuild = true; } ''
|
configDir = pkgs.runCommand "hbase-config-dir" { preferLocalBuild = true; } ''
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
|
|
Loading…
Reference in a new issue