Change service to systemd

This commit is contained in:
Ben Ford 2014-09-22 12:09:53 +01:00
parent 4cc00a1f2b
commit 06818c5cb2

View File

@ -39,13 +39,14 @@ in
} }
]; ];
jobs.sabnzbd = systemd.services.sabnzbd =
{ description = "sabnzbd server"; { description = "sabnzbd server";
wantedBy = [ "multi-user.target" ];
startOn = "started network-interfaces"; after = [ "network.target" ];
stopOn = "stopping network-interfaces"; serviceConfig = {
Type = "forking";
exec = "${sabnzbd}/bin/sabnzbd -d -f ${cfg.configFile}"; ExecStart = "${sabnzbd}/bin/sabnzbd -d -f ${cfg.configFile}";
};
}; };
}; };