software.cfg 2.18 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
[buildout]
versions = versions

parts =
  template
  apache-php
  mariadb
  eggs
  instance-recipe-egg
  downloadcache-workaround
  
extends =
13 14
  http://git.erp5.org/gitweb/slapos.git/blob_plain/refs/tags/slapos-0.60:/stack/lamp.cfg
  http://git.erp5.org/gitweb/slapos.git/blob_plain/refs/tags/slapos-0.60:/stack/shacache-client.cfg
15 16

[application]
17
recipe = slapos.recipe.build:download-unpacked
18
url = Student shall put here url of zipped or tarballed web page or application
19
md5sum = Student may put here md5sum of this file, this is good idea
20
#If provided tarball does not contain top directory, option shall be changed to false
21
strip-top-level-dir = true
22
#extract-directory = 
23 24 25 26 27 28 29 30 31 32 33

[application-template]
recipe = slapos.recipe.download
url = Student shall put here url to template file for application
#md5sum = Student may put here md5sum of this file, this is good idea
filename = template.in
mode = 0644
location = ${buildout:parts-directory}/${:_buildout_section_name_}

[application-configuration]
location = Student shall put here relative path to application top level directory where configuration shall be created
34

35 36
[instance-recipe]
egg = slapos.cookbook
37
module = lamp.simple
38 39 40 41 42 43 44 45 46

[template]
# Default template for the instance.
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance.cfg
#md5sum = Student shall put md5 of instance.cfg here
output = ${buildout:directory}/template.cfg
mode = 0644

47 48 49
[mariadb]
keep-compile-dir = false

50 51 52
[instance-recipe-egg]
recipe = zc.recipe.egg
python = python2.7
53 54
eggs = 
  ${instance-recipe:egg}
55 56 57

[versions]
# Use SlapOS patched zc.buildout
58
zc.buildout = 1.5.3-dev-SlapOS-010
59 60 61 62 63 64 65 66 67 68 69 70 71

[downloadcache-workaround]
# workaround irritating problem of hexagonit.recipe.cmmi which automatically
# creates download cache, which in turn switches builout to "semi-offline" mode
recipe = plone.recipe.command
# in hexagonit.recipe.cmmi if there is no ${buildout:download-cache} set it resolves
# to ${buildout:directory}/downloads but this variable is available late, that's
# why it is hardcoded only for required case
download-cache = ${buildout:directory}/downloads
command = [ -d ${:download-cache} ] && rm -fr ${:download-cache}/* || exit 0
update-command = ${:command}
stop-on-error = True