Skip to content

Commit

Permalink
Merge pull request #14 from shokinn/fix-service-dependencies
Browse files Browse the repository at this point in the history
Add dependency to network-online.target for authentik.service
  • Loading branch information
WilliButz authored Jan 28, 2024
2 parents d5e41d4 + 4dd485a commit bc628c0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ in
};
authentik = {
wantedBy = [ "multi-user.target" ];
wants = [ "network-online.target" ];
after = [
"network-online.target"
"postgresql.service"
Expand Down Expand Up @@ -225,6 +226,7 @@ in
{
systemd.services.authentik-ldap = {
wantedBy = [ "multi-user.target" ];
wants = [ "network-online.target" ];
after = [
"network-online.target"
"authentik.service"
Expand Down

0 comments on commit bc628c0

Please sign in to comment.