blob: ff7ff7c29af52e2ee0866ae754bbf306e7ed755e (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.services.certspotter;
script = pkgs.writeShellApplication {
name = "certspotter-script";
runtimeInputs = with pkgs; [ coreutils ];
text = ''
mkdir -p "''${LOGS_DIRECTORY}"
env > "$(mktemp -p "''${LOGS_DIRECTORY}" "$(date -Iseconds).''${PUBKEY_HASH:-na}.XXXXXXXXXX.env")"
'';
};
startOptions = cfg.extraOptions
++ optionals (cfg.logs != null) ["-logs" cfg.logs]
++ ["-watchlist" (pkgs.writeText "watchlist" (concatStringsSep "\n" cfg.watchList))
"-script" "${script}/bin/certspotter-script"
];
startScript = pkgs.writeShellApplication {
name = "certspotter-start";
runtimeInputs = [ pkgs.coreutils cfg.package ];
text = ''
rm -f "''${STATE_DIRECTORY}/lock"
exec -- certspotter -state_dir "''${STATE_DIRECTORY}" ${escapeShellArgs startOptions}
'';
};
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";
ExecStart = "${startScript}/bin/certspotter-start";
StateDirectory = "certspotter";
LogsDirectory = "certspotter";
DynamicUser = true;
CPUSchedulingPolicy = "idle";
IOSchedulingClass = "idle";
};
};
};
}
|