software.cfg 297 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
[buildout]

newest = false

versions = versions

parts =
  log-env

[log-env]
recipe = slapos.recipe.build
12 13
path = ${buildout:directory}/../env.json
update =
14 15
  import json
  import os
16
  with open(options['path'], 'w') as f:
17 18 19
    json.dump(dict(os.environ), f)

[versions]
20
slapos.recipe.build = 0.57