forked from lix-project/hydra
Don't put ssmtp in hydra's paths
Some installations may want to use system-wide sendmail (i.e. /run/setuid-wrappers/sendmail) and those that want ssmtp can add it to hydra's path themselves. Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
parent
0bb568912b
commit
10cad61231
|
@ -199,7 +199,7 @@ in
|
|||
{ wantedBy = [ "multi-user.target" ];
|
||||
wants = [ "hydra-init.service" ];
|
||||
after = [ "hydra-init.service" "network.target" ];
|
||||
path = [ pkgs.nettools pkgs.ssmtp ];
|
||||
path = [ pkgs.nettools ];
|
||||
environment = env;
|
||||
serviceConfig =
|
||||
{ ExecStartPre = "${cfg.hydra}/bin/hydra-queue-runner --unlock";
|
||||
|
@ -213,7 +213,7 @@ in
|
|||
{ wantedBy = [ "multi-user.target" ];
|
||||
wants = [ "hydra-init.service" ];
|
||||
after = [ "hydra-init.service" "network.target" ];
|
||||
path = [ pkgs.nettools pkgs.ssmtp ];
|
||||
path = [ pkgs.nettools ];
|
||||
environment = env;
|
||||
serviceConfig =
|
||||
{ ExecStart = "@${cfg.hydra}/bin/hydra-evaluator hydra-evaluator";
|
||||
|
|
Loading…
Reference in a new issue