2016-10-20 18:54:38 +00:00
|
|
|
{ config, lib, pkgs, ... }@args: with import <stockholm/lib>; let
|
2016-02-21 04:27:37 +00:00
|
|
|
cfg = config.krebs.secret;
|
|
|
|
in {
|
|
|
|
options.krebs.secret = {
|
|
|
|
files = mkOption {
|
|
|
|
type = with types; attrsOf secret-file;
|
|
|
|
default = {};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = lib.mkIf (cfg.files != {}) {
|
|
|
|
systemd.services.secret = let
|
|
|
|
# TODO fail if two files have the same path but differ otherwise
|
|
|
|
files = unique (map (flip removeAttrs ["_module"])
|
|
|
|
(attrValues cfg.files));
|
|
|
|
in {
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "oneshot";
|
|
|
|
RemainAfterExit = "yes";
|
|
|
|
SyslogIdentifier = "secret";
|
|
|
|
ExecStart = pkgs.writeDash "install-secret-files" ''
|
|
|
|
exit_code=0
|
|
|
|
${concatMapStringsSep "\n" (file: ''
|
|
|
|
${pkgs.coreutils}/bin/install \
|
|
|
|
-D \
|
|
|
|
--compare \
|
|
|
|
--verbose \
|
|
|
|
--mode=${shell.escape file.mode} \
|
2016-02-21 06:18:13 +00:00
|
|
|
--owner=${shell.escape file.owner.name} \
|
2016-02-21 04:27:37 +00:00
|
|
|
--group=${shell.escape file.group-name} \
|
|
|
|
${shell.escape file.source-path} \
|
|
|
|
${shell.escape file.path} \
|
|
|
|
|| exit_code=1
|
|
|
|
'') files}
|
|
|
|
exit $exit_code
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|