diff options
author | lassulus <git@lassul.us> | 2023-11-09 21:21:24 +0100 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-11-09 21:21:24 +0100 |
commit | 015ef28416289059a66b1df043a186256384cc7b (patch) | |
tree | e3ff2a29c050668ee57869c721c87e8c5e52637e /krebs/3modules | |
parent | c79f5fc9faa7790fa7612a8c121b3637faf08470 (diff) |
tinc: reload on change
Diffstat (limited to 'krebs/3modules')
-rw-r--r-- | krebs/3modules/tinc.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/krebs/3modules/tinc.nix b/krebs/3modules/tinc.nix index 9df368cfb..d73d5ca61 100644 --- a/krebs/3modules/tinc.nix +++ b/krebs/3modules/tinc.nix @@ -208,10 +208,9 @@ with import ../../lib/pure.nix { inherit lib; }; { description = "Tinc daemon for ${netname}"; after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - # Restart the service in a single step in order to prevent potential - # connection timeouts and subsequent issues while deploying via tinc. - stopIfChanged = false; + reloadIfChanged = true; serviceConfig = { + ExecReload = "+${cfg.tincPackage}/sbin/tinc -n ${netname} reload"; Restart = "always"; LoadCredential = filter (x: x != "") [ (optionalString (cfg.privkey_ed25519 != null) |