Merge pull request #87553 from JoeDupuis/enhancing-monit-module
nixos/monit: Allow splitting the config in multiple files
This commit is contained in:
commit
2fb9ee9caa
@ -4,19 +4,29 @@ with lib;
|
|||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.services.monit;
|
cfg = config.services.monit;
|
||||||
|
extraConfig = pkgs.writeText "monitConfig" cfg.extraConfig;
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
(mkRenamedOptionModule [ "services" "monit" "config" ] ["services" "monit" "extraConfig" ])
|
||||||
|
];
|
||||||
|
|
||||||
options.services.monit = {
|
options.services.monit = {
|
||||||
|
|
||||||
enable = mkEnableOption "Monit";
|
enable = mkEnableOption "Monit";
|
||||||
|
|
||||||
config = mkOption {
|
configFiles = mkOption {
|
||||||
type = types.lines;
|
type = types.listOf types.path;
|
||||||
default = "";
|
default = [];
|
||||||
description = "monitrc content";
|
description = "List of paths to be included in the monitrc file";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extraConfig = mkOption {
|
||||||
|
type = types.lines;
|
||||||
|
default = "";
|
||||||
|
description = "Additional monit config as string";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
@ -24,7 +34,7 @@ in
|
|||||||
environment.systemPackages = [ pkgs.monit ];
|
environment.systemPackages = [ pkgs.monit ];
|
||||||
|
|
||||||
environment.etc.monitrc = {
|
environment.etc.monitrc = {
|
||||||
text = cfg.config;
|
text = concatMapStringsSep "\n" (path: "include ${path}") (cfg.configFiles ++ [extraConfig]);
|
||||||
mode = "0400";
|
mode = "0400";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user