mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 07:04:28 +00:00
b37bbca521
These were broken since 2016:f0367da7d1
since StartLimitIntervalSec got moved into [Unit] from [Service]. StartLimitBurst has also been moved accordingly, so let's fix that one too. NixOS systems have been producing logs such as: /nix/store/wf98r55aszi1bkmln1lvdbp7znsfr70i-unit-caddy.service/caddy.service:31: Unknown key name 'StartLimitIntervalSec' in section 'Service', ignoring. I have also removed some unnecessary duplication in units disabling rate limiting since setting either interval or burst to zero disables it (ad16158c10/src/basic/ratelimit.c (L16)
)
86 lines
2.7 KiB
Nix
86 lines
2.7 KiB
Nix
/*
|
|
|
|
This file is for NixOS-specific options and configs.
|
|
|
|
Code that is shared with nix-darwin goes in common.nix.
|
|
|
|
*/
|
|
|
|
{ pkgs, config, lib, ... }:
|
|
|
|
let
|
|
|
|
inherit (lib) mkIf mkDefault;
|
|
|
|
cfg = config.services.hercules-ci-agent;
|
|
|
|
command = "${cfg.package}/bin/hercules-ci-agent --config ${cfg.tomlFile}";
|
|
testCommand = "${command} --test-configuration";
|
|
|
|
in
|
|
{
|
|
imports = [
|
|
./common.nix
|
|
(lib.mkRenamedOptionModule ["services" "hercules-ci-agent" "user"] ["systemd" "services" "hercules-ci-agent" "serviceConfig" "User"])
|
|
];
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.hercules-ci-agent = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network-online.target" ];
|
|
wants = [ "network-online.target" ];
|
|
path = [ config.nix.package ];
|
|
startLimitBurst = 30 * 1000000; # practically infinite
|
|
serviceConfig = {
|
|
User = "hercules-ci-agent";
|
|
ExecStart = command;
|
|
ExecStartPre = testCommand;
|
|
Restart = "on-failure";
|
|
RestartSec = 120;
|
|
};
|
|
};
|
|
|
|
# Changes in the secrets do not affect the unit in any way that would cause
|
|
# a restart, which is currently necessary to reload the secrets.
|
|
systemd.paths.hercules-ci-agent-restart-files = {
|
|
wantedBy = [ "hercules-ci-agent.service" ];
|
|
pathConfig = {
|
|
Unit = "hercules-ci-agent-restarter.service";
|
|
PathChanged = [ cfg.settings.clusterJoinTokenPath cfg.settings.binaryCachesPath ];
|
|
};
|
|
};
|
|
systemd.services.hercules-ci-agent-restarter = {
|
|
serviceConfig.Type = "oneshot";
|
|
script = ''
|
|
# Wait a bit, with the effect of bundling up file changes into a single
|
|
# run of this script and hopefully a single restart.
|
|
sleep 10
|
|
if systemctl is-active --quiet hercules-ci-agent.service; then
|
|
if ${testCommand}; then
|
|
systemctl restart hercules-ci-agent.service
|
|
else
|
|
echo 1>&2 "WARNING: Not restarting agent because config is not valid at this time."
|
|
fi
|
|
else
|
|
echo 1>&2 "Not restarting hercules-ci-agent despite config file update, because it is not already active."
|
|
fi
|
|
'';
|
|
};
|
|
|
|
# Trusted user allows simplified configuration and better performance
|
|
# when operating in a cluster.
|
|
nix.trustedUsers = [ config.systemd.services.hercules-ci-agent.serviceConfig.User ];
|
|
services.hercules-ci-agent.settings.nixUserIsTrusted = true;
|
|
|
|
users.users.hercules-ci-agent = {
|
|
home = cfg.settings.baseDirectory;
|
|
createHome = true;
|
|
group = "hercules-ci-agent";
|
|
description = "Hercules CI Agent system user";
|
|
isSystemUser = true;
|
|
};
|
|
|
|
users.groups.hercules-ci-agent = {};
|
|
};
|
|
}
|