blob: 8d49b9e90773cd59e4cef6da3b2e470ca800a9f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.services.certspotter;
startOptions = cfg.extraOptions
++ optionals (cfg.logs != null) ["-logs" cfg.logs]
++ ["-watchlist" (pkgs.writeText "watchlist" (concatStringsSep "\n" cfg.watchList))
];
in {
options = {
services.certspotter = {
watchList = mkOption {
type = types.listOf types.str;
default = [];
};
logs = mkOption {
type = types.nullOr types.str;
default = null;
};
extraOptions = mkOption {
type = types.listOf types.str;
default = [ "-verbose" ];
};
package = mkPackageOption pkgs "certspotter" {};
};
};
config = mkIf (cfg.watchList != []) {
systemd.services.certspotter = {
serviceConfig = {
Type = "oneshot";
ExecStartPre = "${pkgs.coreutils}/bin/rm -f $STATE_DIRECTORY/lock";
ExecStart = "${cfg.package}/bin/certspotter -state_dir $STATE_DIRECTORY ${escapeShellArgs startOptions}";
StateDirectory = "certspotter";
LogsDirectory = "certspotter";
StandardOutput = "append:$LOGS_DIRECTORY/certspotter.log";
DynamicUser = true;
};
};
};
}
|