3p/nixpkgs: don't block on waiting for pomerium to restart

This commit is contained in:
Luke Granger-Brown 2021-12-07 18:06:16 +00:00
parent b6e4741320
commit dfa85c90c1

View file

@ -128,7 +128,7 @@ in
Type = "oneshot"; Type = "oneshot";
TimeoutSec = 60; TimeoutSec = 60;
ExecCondition = "/run/current-system/systemd/bin/systemctl -q is-active pomerium.service"; ExecCondition = "/run/current-system/systemd/bin/systemctl -q is-active pomerium.service";
ExecStart = "/run/current-system/systemd/bin/systemctl restart pomerium.service"; ExecStart = "/run/current-system/systemd/bin/systemctl --no-block restart pomerium.service";
}; };
}; };
}); });