software.cfg 1.99 KB
Newer Older
Mayoro Diagne's avatar
Mayoro Diagne committed
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
  
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

[application]
17
recipe = slapos.recipe.build
Mayoro Diagne's avatar
Mayoro Diagne committed
18
url = https://forge.indepnet.net/attachments/download/974/glpi-0.80.4.tar.gz
19 20 21 22 23 24 25
md5sum = 8d6e4242c7079fcaaab734937e8d5a36
script =
  if not self.options.get('url'): self.options['url'], self.options['md5sum'] = self.options[guessPlatform()].split(' ')
  extract_dir = self.extract(self.download(self.options['url'], self.options.get('md5sum')))
  workdir = guessworkdir(extract_dir)
  self.copyTree(workdir, "${buildout:parts-directory}/${:_buildout_section_name_}")
  
Mayoro Diagne's avatar
Mayoro Diagne committed
26 27 28 29 30 31 32 33
[instance-recipe]
egg = slapos.cookbook
module = lamp.simple

[template]
# Default template for the instance.
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance.cfg
34
#${:_profile_base_location_}/instance.cfg
Mayoro Diagne's avatar
Mayoro Diagne committed
35 36 37 38 39 40 41
#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
42 43 44 45
eggs =
    ${mysql-python:egg}
    ${instance-recipe:egg}
    slapos.toolbox[lampconfigure]
Mayoro Diagne's avatar
Mayoro Diagne committed
46 47 48 49

[versions]
# Use SlapOS patched zc.buildout
zc.buildout = 1.5.3-dev-SlapOS-010
50
slapos.cookbook = 0.32
Mayoro Diagne's avatar
Mayoro Diagne committed
51 52 53 54 55 56 57 58 59 60 61 62

[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