mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
0a37316d6c
This commit replaces a lot of usages of `mkOption` with the package type, to be `mkPackageOption`, in order to reduce the amount of code.
92 lines
2.4 KiB
Nix
92 lines
2.4 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.syslog-ng;
|
|
|
|
syslogngConfig = pkgs.writeText "syslog-ng.conf" ''
|
|
${cfg.configHeader}
|
|
${cfg.extraConfig}
|
|
'';
|
|
|
|
ctrlSocket = "/run/syslog-ng/syslog-ng.ctl";
|
|
pidFile = "/run/syslog-ng/syslog-ng.pid";
|
|
persistFile = "/var/syslog-ng/syslog-ng.persist";
|
|
|
|
syslogngOptions = [
|
|
"--foreground"
|
|
"--module-path=${concatStringsSep ":" (["${cfg.package}/lib/syslog-ng"] ++ cfg.extraModulePaths)}"
|
|
"--cfgfile=${syslogngConfig}"
|
|
"--control=${ctrlSocket}"
|
|
"--persist-file=${persistFile}"
|
|
"--pidfile=${pidFile}"
|
|
];
|
|
|
|
in {
|
|
imports = [
|
|
(mkRemovedOptionModule [ "services" "syslog-ng" "serviceName" ] "")
|
|
(mkRemovedOptionModule [ "services" "syslog-ng" "listenToJournal" ] "")
|
|
];
|
|
|
|
options = {
|
|
|
|
services.syslog-ng = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Whether to enable the syslog-ng daemon.
|
|
'';
|
|
};
|
|
package = mkPackageOption pkgs "syslogng" { };
|
|
extraModulePaths = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [];
|
|
description = lib.mdDoc ''
|
|
A list of paths that should be included in syslog-ng's
|
|
`--module-path` option. They should usually
|
|
end in `/lib/syslog-ng`
|
|
'';
|
|
};
|
|
extraConfig = mkOption {
|
|
type = types.lines;
|
|
default = "";
|
|
description = lib.mdDoc ''
|
|
Configuration added to the end of `syslog-ng.conf`.
|
|
'';
|
|
};
|
|
configHeader = mkOption {
|
|
type = types.lines;
|
|
default = ''
|
|
@version: 4.4
|
|
@include "scl.conf"
|
|
'';
|
|
description = lib.mdDoc ''
|
|
The very first lines of the configuration file. Should usually contain
|
|
the syslog-ng version header.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.syslog-ng = {
|
|
description = "syslog-ng daemon";
|
|
preStart = "mkdir -p /{var,run}/syslog-ng";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "multi-user.target" ]; # makes sure hostname etc is set
|
|
serviceConfig = {
|
|
Type = "notify";
|
|
PIDFile = pidFile;
|
|
StandardOutput = "null";
|
|
Restart = "on-failure";
|
|
ExecStart = "${cfg.package}/sbin/syslog-ng ${concatStringsSep " " syslogngOptions}";
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|