10 downloadcache-workaround
15 ../../stack/shacache-client.cfg
18 recipe = hexagonit.recipe.download
19 url = http://downloads.sourceforge.net/project/nucleuscms/1.%20Nucleus%20Core/Nucleus%20v3.64/nucleus3.64.zip?r=&ts=1319307841&use_mirror=freefr
20 md5sum = f38d23cba814e6aa05e5d82ea43cb3fd
21 #If provided tarball does not contain top directory, option shall be changed to false
22 strip-top-level-dir = true
25 recipe = hexagonit.recipe.download
26 location = ${buildout:parts-directory}/${:_buildout_section_name_}
27 url = ${:_profile_base_location_}/configure-nucleus.py
28 md5sum = c052f761180a6ee55af1e531e4c38b4b
29 filename = configure-nucleus.py
38 # Default template for the instance.
39 recipe = slapos.recipe.template
40 url = ${:_profile_base_location_}/instance.cfg
41 #md5sum = Student shall put md5 of instance.cfg here
42 output = ${buildout:directory}/template.cfg
46 recipe = zc.recipe.egg
49 ${instance-recipe:egg}
50 slapos.toolbox[lampconfigure]
53 # Use SlapOS patched zc.buildout
55 [downloadcache-workaround]
56 # workaround irritating problem of hexagonit.recipe.cmmi which automatically
57 # creates download cache, which in turn switches builout to "semi-offline" mode
58 recipe = plone.recipe.command
59 # in hexagonit.recipe.cmmi if there is no ${buildout:download-cache} set it resolves
60 # to ${buildout:directory}/downloads but this variable is available late, that's
61 # why it is hardcoded only for required case
62 download-cache = ${buildout:directory}/downloads
63 command = [ -d ${:download-cache} ] && rm -fr ${:download-cache}/* || exit 0
64 update-command = ${:command}