software.cfg 2.17 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
[buildout]
versions = versions

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

extends =
  ../../stack/lamp.cfg

[application]
17
recipe = slapos.recipe.build:download-unpacked
18 19
url = http://www.net2ftp.com/download/net2ftp_v0.98.zip
md5sum = 5a2741b5881f3f229a788958dc6cdf10
20
extract-directory = files_to_upload
21 22

[configure-script]
23
recipe = slapos.recipe.build:download
24 25
location = ${buildout:parts-directory}/${:_buildout_section_name_}
url = ${:_profile_base_location_}/configure.py
26
md5sum = f7e1766468f7a8d51d311541164c3ff4
27
filename = configure.py
28
mode = 0744
29 30

[application-template]
31
recipe = slapos.recipe.build:download
32
url = ${:_profile_base_location_}/template/net2ftp.inc.php.in
33
md5sum = 5ad3b2b42affd83229f0666c480b90cb
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
filename = template.in
mode = 0644
location = ${buildout:parts-directory}/${:_buildout_section_name_}

[application-configuration]
location = settings.inc.php
  
[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
55 56 57 58
eggs =
    ${mysql-python:egg}
    ${instance-recipe:egg}
    slapos.toolbox[lampconfigure]
59 60 61 62

[versions]
# Use SlapOS patched zc.buildout

63 64 65 66 67 68 69 70 71
Jinja2 = 2.6
MySQL-python = 1.2.3
Werkzeug = 0.8.1
buildout-versions = 1.7
hexagonit.recipe.cmmi = 1.5.0
meld3 = 0.6.7
plone.recipe.command = 1.1
slapos.recipe.template = 2.2

72 73 74 75 76 77 78 79 80 81 82 83
[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