@cryptotaxi247 / infra-1 / commits / 180c775d

* Run the conversion script periodically.

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

Eelco Dolstra committed Jul 9, 2012 at 18:25 UTC 180c775d0e86d9b4cbc25f119af36945e96e602e
1 file changed +9
lucifer.nix
+9
@@ -152,4 +152,13 @@
152 '';
153 };
154
155 + jobs."convert-to-binary-channel" =
156 + { startOn = "started networking";
157 + path = [ pkgs.su ];
158 + script =
159 + ''
160 + su - hydra-mirror -c 'exec >> convert-to-binary-channel.log 2>&1; cd release/channels; while true; do date; ./convert-to-binary-channel.pl; sleep 3600; done'
161 + '';
162 + };
163 +
164 }