Commit 4883e442 authored by Łukasz Nowak's avatar Łukasz Nowak

Separate egg from used module.

As slapos.cookbook provides different modules it is required to correctly
select when egg is wanted and when its module selected.
parent aa385762
...@@ -6,7 +6,7 @@ eggs-directory = ${buildout:eggs-directory} ...@@ -6,7 +6,7 @@ eggs-directory = ${buildout:eggs-directory}
develop-eggs-directory = ${buildout:develop-eggs-directory} develop-eggs-directory = ${buildout:develop-eggs-directory}
[instance] [instance]
recipe = ${instance-recipe:name} recipe = ${instance-recipe:egg}:${instance-recipe:module}
dcrond_binary = ${dcron:location}/sbin/crond dcrond_binary = ${dcron:location}/sbin/crond
haproxy_binary = ${haproxy:location}/sbin/haproxy haproxy_binary = ${haproxy:location}/sbin/haproxy
httpd_binary = ${apache:location}/bin/httpd httpd_binary = ${apache:location}/bin/httpd
......
...@@ -27,7 +27,8 @@ unzip = true ...@@ -27,7 +27,8 @@ unzip = true
[instance-recipe] [instance-recipe]
# Note: In case if specific instantiation recipe is used this is the place to # Note: In case if specific instantiation recipe is used this is the place to
# put its name # put its name
name = slapos.cookbook:erp5 egg = slapos.cookbook
module = erp5
[template] [template]
# Default template for erp5 instance. # Default template for erp5 instance.
......
...@@ -251,7 +251,7 @@ recipe = zc.recipe.egg ...@@ -251,7 +251,7 @@ recipe = zc.recipe.egg
python = python2.6 python = python2.6
eggs = eggs =
# instantiation egg # instantiation egg
${instance-recipe:name} ${instance-recipe:egg}
erp5.conflictresolver erp5.conflictresolver
[eggs] [eggs]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment