blob: 70c28b740a53b9ffde08bc9d05333732c75aad0d (
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
|
{ 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 -Ins).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"
];
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";
DynamicUser = true;
};
};
};
}
|