nixos/freeradius: depend on network.target, not online

This commit is contained in:
Linus Heckemann 2020-02-27 18:25:43 +01:00
parent 0587329191
commit 065716ab95
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ let
{
description = "FreeRadius server";
wantedBy = ["multi-user.target"];
after = ["network-online.target"];
wants = ["network-online.target"];
after = ["network.target"];
wants = ["network.target"];
preStart = ''
${pkgs.freeradius}/bin/radiusd -C -d ${cfg.configDir} -l stdout
'';