nixpkgs/nixos/modules/services/networking/racoon.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2015-04-25 13:31:27 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.racoon;
in {
options.services.racoon = {
2015-06-21 15:19:46 +00:00
enable = mkEnableOption "racoon";
2015-04-25 13:31:27 +00:00
config = mkOption {
description = "Contents of racoon configuration file.";
default = "";
type = types.str;
};
configPath = mkOption {
description = "Location of racoon config if config is not provided.";
default = "/etc/racoon/racoon.conf";
type = types.path;
};
};
config = mkIf cfg.enable {
systemd.services.racoon = {
description = "Racoon Daemon";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
ExecStart = "${pkgs.ipsecTools}/bin/racoon -f ${
if (cfg.config != "") then pkgs.writeText "racoon.conf" cfg.config
else cfg.configPath
}";
ExecReload = "${pkgs.ipsecTools}/bin/racoonctl reload-config";
2018-12-19 21:40:37 +00:00
PIDFile = "/run/racoon.pid";
2015-04-25 13:31:27 +00:00
Type = "forking";
Restart = "always";
};
preStart = ''
2018-12-19 21:40:37 +00:00
rm /run/racoon.pid || true
mkdir -p /var/racoon
'';
2015-04-25 13:31:27 +00:00
};
};
}