Merge pull request #255145 from BuonHobo/patch-1
jellyfin: Start service after network is up
This commit is contained in:
commit
f8056c5007
1 changed files with 2 additions and 1 deletions
|
@ -46,7 +46,8 @@ in
|
|||
config = mkIf cfg.enable {
|
||||
systemd.services.jellyfin = {
|
||||
description = "Jellyfin Media Server";
|
||||
after = [ "network.target" ];
|
||||
after = [ "network-online.target" ];
|
||||
wants = [ "network-online.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
||||
# This is mostly follows: https://github.com/jellyfin/jellyfin/blob/master/fedora/jellyfin.service
|
||||
|
|
Loading…
Reference in a new issue