about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-12-13 09:16:30 -0500
committerGitHub <noreply@github.com>2023-12-13 09:16:30 -0500
commit223b0a4fd77724805839859972e6502bc388fb98 (patch)
treeec0d8015b8adef013fb4bb8fa0fbaf6b12a040cb /nixos
parent8c2aee735fe418120707b07d223433954febfb85 (diff)
parent5fd6ebdbef4b0f88831e3ca5f9c6411cba0dff3b (diff)
downloadnixlib-223b0a4fd77724805839859972e6502bc388fb98.tar
nixlib-223b0a4fd77724805839859972e6502bc388fb98.tar.gz
nixlib-223b0a4fd77724805839859972e6502bc388fb98.tar.bz2
nixlib-223b0a4fd77724805839859972e6502bc388fb98.tar.lz
nixlib-223b0a4fd77724805839859972e6502bc388fb98.tar.xz
nixlib-223b0a4fd77724805839859972e6502bc388fb98.tar.zst
nixlib-223b0a4fd77724805839859972e6502bc388fb98.zip
Merge pull request #273878 from numinit/nebula-startup-race
nixos/nebula: wait for start notification to prevent startup race
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/nebula.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/nebula.nix b/nixos/modules/services/networking/nebula.nix
index b9ebbfbd9a29..e13876172dac 100644
--- a/nixos/modules/services/networking/nebula.nix
+++ b/nixos/modules/services/networking/nebula.nix
@@ -196,7 +196,7 @@ in
             before = [ "sshd.service" ];
             wantedBy = [ "multi-user.target" ];
             serviceConfig = {
-              Type = "simple";
+              Type = "notify";
               Restart = "always";
               ExecStart = "${netCfg.package}/bin/nebula -config ${configFile}";
               UMask = "0027";