software.cfg 2.27 KB
Newer Older
Mayoro Diagne's avatar
Mayoro Diagne committed
1 2 3 4 5 6 7 8 9 10
[buildout]
versions = versions

parts =
  template
  apache-php
  mariadb
  eggs
  instance-recipe-egg
  downloadcache-workaround
11

Mayoro Diagne's avatar
Mayoro Diagne committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
extends =
  http://git.erp5.org/gitweb/slapos.git/blob_plain/refs/heads/lamp:/stack/lamp.cfg
  http://git.erp5.org/gitweb/slapos.git/blob_plain/refs/heads/lamp:/stack/shacache-client.cfg

allow-hosts += alastairs-place.net

[application]
recipe = hexagonit.recipe.download
url = http://freefr.dl.sourceforge.net/project/xaraya/Core%20plus%20Modules/Xaraya%201.2.3%20Core%20Plus/xaraya-1.2.3-full.tar.gz
#md5sum = Student may put here md5sum of this file, this is good idea
#If provided tarball does not contain top directory, option shall be changed to false
#strip-top-level-dir = true

[application-template]
recipe = slapos.recipe.download
27
url = https://gitorious.org/~mayoro/slapos/mayoro-slapos/blobs/raw/master/software/xaraya/template/config.system.php.in
Mayoro Diagne's avatar
Mayoro Diagne committed
28 29 30 31 32 33 34
#md5sum = Student may put here md5sum of this file, this is good idea
download-only = True
filename = template.in
mode = 0644
location = ${buildout:parts-directory}/${:_buildout_section_name_}

[application-configuration]
35
location = html/var/config.system.php
Mayoro Diagne's avatar
Mayoro Diagne committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

[instance-recipe]
egg = slapos.cookbook
module = lamp.simple

[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

[instance-recipe-egg]
recipe = zc.recipe.egg
python = python2.7
eggs = ${instance-recipe:egg}

54 55 56
[lxml-python]
find-links += http://pypi.python.org/pypi/lxml/2.3.1

Mayoro Diagne's avatar
Mayoro Diagne committed
57 58 59
[versions]
# Use SlapOS patched zc.buildout
zc.buildout = 1.5.3-dev-SlapOS-010
60
slapos.cookbook = 0.31
Mayoro Diagne's avatar
Mayoro Diagne committed
61 62 63 64 65 66 67 68 69 70 71 72

[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