mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-16 12:45:56 +01:00
It was wrong to use StateDirectory to keep the scion-control and scion-router runtime databases on disk for the next run. I observed that doing this means a reboot, or power outage can corrupt the temporary runtime databases for the next service start, leading scion ping and other functionality to stop working permanently, since those files are not managed in an atomic manner by the golang code.
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.scion.scion-router;
|
|
toml = pkgs.formats.toml { };
|
|
defaultConfig = {
|
|
general = {
|
|
id = "br";
|
|
config_dir = "/etc/scion";
|
|
};
|
|
};
|
|
configFile = toml.generate "scion-router.toml" (recursiveUpdate defaultConfig cfg.settings);
|
|
in
|
|
{
|
|
options.services.scion.scion-router = {
|
|
enable = mkEnableOption "the scion-router service";
|
|
settings = mkOption {
|
|
default = { };
|
|
type = toml.type;
|
|
example = literalExpression ''
|
|
{
|
|
general.id = "br";
|
|
}
|
|
'';
|
|
description = ''
|
|
scion-router configuration. Refer to
|
|
<https://docs.scion.org/en/latest/manuals/common.html>
|
|
for details on supported values.
|
|
'';
|
|
};
|
|
};
|
|
config = mkIf cfg.enable {
|
|
systemd.services.scion-router = {
|
|
description = "SCION Router";
|
|
after = [ "network-online.target" ];
|
|
wants = [ "network-online.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.scion}/bin/scion-router --config ${configFile}";
|
|
Restart = "on-failure";
|
|
DynamicUser = true;
|
|
RuntimeDirectory = "scion-router";
|
|
};
|
|
};
|
|
};
|
|
}
|