mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
Change service to systemd
This commit is contained in:
parent
4cc00a1f2b
commit
06818c5cb2
@ -39,13 +39,14 @@ in
|
||||
}
|
||||
];
|
||||
|
||||
jobs.sabnzbd =
|
||||
systemd.services.sabnzbd =
|
||||
{ description = "sabnzbd server";
|
||||
|
||||
startOn = "started network-interfaces";
|
||||
stopOn = "stopping network-interfaces";
|
||||
|
||||
exec = "${sabnzbd}/bin/sabnzbd -d -f ${cfg.configFile}";
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
after = [ "network.target" ];
|
||||
serviceConfig = {
|
||||
Type = "forking";
|
||||
ExecStart = "${sabnzbd}/bin/sabnzbd -d -f ${cfg.configFile}";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user