@cryptotaxi247 / infra-1 / commits / 575d9393

* Fix email notification.

svn path=/configurations/trunk/tud/; revision=34653

Eelco Dolstra committed Dec 4, 2012 at 21:23 UTC 575d93931547ced51f6396e942e67819d75d1986
1 file changed +2 -1
hydra-module.nix
+2 -1
@@ -176,6 +176,7 @@ in
176 { wantedBy = [ "multi-user.target" ];
177 wants = [ "hydra-init.service" ];
178 after = [ "hydra-init.service" "network.target" ];
179 + path = [ pkgs.nettools pkgs.ssmtp ];
180 environment = env;
181 serviceConfig =
182 { ExecStartPre = "${hydra}/bin/hydra-queue-runner --unlock";
@@ -189,7 +190,7 @@ in
190 { wantedBy = [ "multi-user.target" ];
191 wants = [ "hydra-init.service" ];
192 after = [ "hydra-init.service" "network.target" ];
192 - path = [ pkgs.nettools ];
193 + path = [ pkgs.nettools pkgs.ssmtp ];
194 environment = env;
195 serviceConfig =
196 { ExecStart = "@${hydra}/bin/hydra-evaluator hydra-evaluator";