Merge pull request #282878 from Mic92/buildbot

nixos/buildbot: don't require network-online.target
This commit is contained in:
Jörg Thalheim
2024-01-22 15:53:13 +01:00
committed by GitHub
@@ -267,8 +267,7 @@ in {
systemd.services.buildbot-master = {
description = "Buildbot Continuous Integration Server.";
after = [ "network-online.target" ];
wants = [ "network-online.target" ];
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
path = cfg.packages ++ cfg.pythonPackages python.pkgs;
environment.PYTHONPATH = "${python.withPackages (self: cfg.pythonPackages self ++ [ package ])}/${python.sitePackages}";