add konsens module
This commit is contained in:
parent
61e6552da3
commit
af2753507d
@ -26,6 +26,7 @@ let
|
|||||||
./iana-etc.nix
|
./iana-etc.nix
|
||||||
./iptables.nix
|
./iptables.nix
|
||||||
./kapacitor.nix
|
./kapacitor.nix
|
||||||
|
./konsens.nix
|
||||||
./monit.nix
|
./monit.nix
|
||||||
./newsbot-js.nix
|
./newsbot-js.nix
|
||||||
./nixpkgs.nix
|
./nixpkgs.nix
|
||||||
|
80
krebs/3modules/konsens.nix
Normal file
80
krebs/3modules/konsens.nix
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with import <stockholm/lib>;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.krebs.konsens;
|
||||||
|
|
||||||
|
out = {
|
||||||
|
options.krebs.konsens = api;
|
||||||
|
config = lib.mkIf cfg.enable imp;
|
||||||
|
};
|
||||||
|
|
||||||
|
api = {
|
||||||
|
enable = mkEnableOption "git konsens finder";
|
||||||
|
repos = mkOption {
|
||||||
|
type = types.attrsOf (types.submodule ({ config, ...}: {
|
||||||
|
options = {
|
||||||
|
url = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "git@localhost:${config._module.args.name}";
|
||||||
|
};
|
||||||
|
branchesToCheck = mkOption {
|
||||||
|
type = types.listOf types.str;
|
||||||
|
default = [ "lassulus" "makefu" "tv" ];
|
||||||
|
};
|
||||||
|
target = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "master";
|
||||||
|
};
|
||||||
|
timerConfig = mkOption {
|
||||||
|
type = types.attrsOf types.str;
|
||||||
|
default = {
|
||||||
|
OnCalendar = "*:00,15,30,45";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
imp = {
|
||||||
|
users.users.konsens = rec {
|
||||||
|
name = "konsens";
|
||||||
|
uid = genid name;
|
||||||
|
home = "/var/lib/konsens";
|
||||||
|
createHome = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.timers = mapAttrs' (name: repo:
|
||||||
|
nameValuePair "konsens-${name}" {
|
||||||
|
description = "konsens timer";
|
||||||
|
wantedBy = [ "timers.target" ];
|
||||||
|
timerConfig = repo.timerConfig;
|
||||||
|
}
|
||||||
|
) cfg.repos;
|
||||||
|
|
||||||
|
systemd.services = mapAttrs' (name: repo:
|
||||||
|
nameValuePair "konsens-${name}" {
|
||||||
|
after = [ "network.target" "secret.service" ];
|
||||||
|
path = [ pkgs.git ];
|
||||||
|
restartIfChanged = false;
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
PermissionsStartOnly = true;
|
||||||
|
ExecStart = pkgs.writeDash "konsens-${name}" ''
|
||||||
|
if ! test -e ${name}; then
|
||||||
|
git clone ${repo.url} ${name}
|
||||||
|
fi
|
||||||
|
cd ${name}
|
||||||
|
git fetch origin
|
||||||
|
git push origin $(git merge-base ${concatMapStringsSep " " (branch: "origin/${branch}") repo.branchesToCheck}):refs/heads/master
|
||||||
|
'';
|
||||||
|
WorkingDirectory = /var/lib/konsens;
|
||||||
|
User = "konsens";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
) cfg.repos;
|
||||||
|
};
|
||||||
|
|
||||||
|
in out
|
Loading…
Reference in New Issue
Block a user