nixos/hadoop: fix mkenableoption text

This commit is contained in:
illustris 2022-01-08 12:48:23 +05:30
parent e3a73aed43
commit 6efa931c51
2 changed files with 7 additions and 7 deletions

View file

@ -17,7 +17,7 @@ in
{
options.services.hadoop.hdfs = {
namenode = {
enable = mkEnableOption "Whether to run the HDFS NameNode";
enable = mkEnableOption "HDFS NameNode";
formatOnInit = mkOption {
type = types.bool;
default = false;
@ -37,7 +37,7 @@ in
};
};
datanode = {
enable = mkEnableOption "Whether to run the HDFS DataNode";
enable = mkEnableOption "HDFS DataNode";
inherit restartIfChanged;
openFirewall = mkOption {
type = types.bool;
@ -48,7 +48,7 @@ in
};
};
journalnode = {
enable = mkEnableOption "Whether to run the HDFS JournalNode";
enable = mkEnableOption "HDFS JournalNode";
inherit restartIfChanged;
openFirewall = mkOption {
type = types.bool;
@ -59,11 +59,11 @@ in
};
};
zkfc = {
enable = mkEnableOption "Whether to run the HDFS ZooKeeper failover controller";
enable = mkEnableOption "HDFS ZooKeeper failover controller";
inherit restartIfChanged;
};
httpfs = {
enable = mkEnableOption "Whether to run the HDFS HTTPfs server";
enable = mkEnableOption "HDFS HTTPfs server";
tempPath = mkOption {
type = types.path;
default = "/tmp/hadoop/httpfs";

View file

@ -17,7 +17,7 @@ in
{
options.services.hadoop.yarn = {
resourcemanager = {
enable = mkEnableOption "Whether to run the Hadoop YARN ResourceManager";
enable = mkEnableOption "Hadoop YARN ResourceManager";
inherit restartIfChanged;
openFirewall = mkOption {
type = types.bool;
@ -28,7 +28,7 @@ in
};
};
nodemanager = {
enable = mkEnableOption "Whether to run the Hadoop YARN NodeManager";
enable = mkEnableOption "Hadoop YARN NodeManager";
inherit restartIfChanged;
addBinBash = mkOption {
type = types.bool;