buildout fehlen instance eggs

3 messages Options
Embed this post
Permalink
Matthias Teege

buildout fehlen instance eggs

Reply Threaded More More options
Print post
Permalink
Hallo,

ich habe eine ältere Ploneinstanz die ich auch lange nicht angefasst
habe. Heute habe ich "buildout -No" aufgerufen und folgende Fehlermeldung
bekommen:

...
Picked: plone.recipe.zope2instance = 3.4
While:
  Installing.
  Getting section zopepy.
  Initializing section zopepy.
  Getting option zopepy:eggs.
Error: Referenced option does not exist: instance eggs

Die zopepy Sektion enthält nichts aussergewöhnliches

[zopepy]
recipe = zc.recipe.egg
eggs = ${instance:eggs}
interpreter = zopepy
extra-paths = ${zope2:location}/lib/python
scripts = zopepy

und auch die instance Sektion enthält keine besonderen Einträge

[instance]
recipe = plone.recipe.zope2instance
zope2-location = ${zope2:location}
user = user:pass
http-address = 127.0.0.1:8080
debug-mode = off
verbose-security = off

Was fehlt buildout?

Vielen Dank
Matthias




_______________________________________________
zope mailing list
[hidden email]
https://mail.dzug.org/mailman/listinfo/zope
Hendrik Bunke

Re: buildout fehlen instance eggs

Reply Threaded More More options
Print post
Permalink
--On Wed, 12 Aug 2009 15:22, Matthias Teege wrote:

> Hallo,
>
> ich habe eine ältere Ploneinstanz die ich auch lange nicht angefasst
> habe. Heute habe ich "buildout -No" aufgerufen und folgende Fehlermeldung
> bekommen:
>
> ...
> Picked: plone.recipe.zope2instance = 3.4
> While:
>   Installing.
>   Getting section zopepy.
>   Initializing section zopepy.
>   Getting option zopepy:eggs.
> Error: Referenced option does not exist: instance eggs
>
> Die zopepy Sektion enthält nichts aussergewöhnliches
>
> [zopepy]
> recipe = zc.recipe.egg
> eggs = ${instance:eggs}
> interpreter = zopepy
> extra-paths = ${zope2:location}/lib/python
> scripts = zopepy
>
> und auch die instance Sektion enthält keine besonderen Einträge
>
> [instance]
> recipe = plone.recipe.zope2instance
> zope2-location = ${zope2:location}
> user = user:pass
> http-address = 127.0.0.1:8080
> debug-mode = off
> verbose-security = off
>
> Was fehlt buildout?
Da scheinen schlicht die eggs unter [instance] zu fehlen.

gruß
hendrik


--
Dr. Hendrik Bunke
http://hbxt.org



_______________________________________________
zope mailing list
[hidden email]
https://mail.dzug.org/mailman/listinfo/zope
Matthias Teege

Re: buildout fehlen instance eggs

Reply Threaded More More options
Print post
Permalink
> Da scheinen schlicht die eggs unter [instance] zu fehlen.

Ja sieht wirlich so aus:

[instance]
recipe = plone.recipe.zope2instance
zope2-location = ${zope2:location}
user = user:pass
http-address = 127.0.0.1:8080
debug-mode = off
verbose-security = off

[supervisor]
recipe = zc.recipe.egg
egg = supervisor

# If you want Zope to know about any additional eggs, list them here.
# This should include any development eggs you listed in develop-eggs above,
# e.g. eggs = ${buildout:eggs} ${plone:eggs} my.package
eggs =
    ${buildout:eggs}
    ${plone:eggs}

muss dann wohl so aussehen oder?

[instance]
recipe = plone.recipe.zope2instance
zope2-location = ${zope2:location}
user = user:pass
http-address = 127.0.0.1:8080
debug-mode = off
verbose-security = off

# If you want Zope to know about any additional eggs, list them here.
# This should include any development eggs you listed in develop-eggs above,
# e.g. eggs = ${buildout:eggs} ${plone:eggs} my.package
eggs =
    ${buildout:eggs}
    ${plone:eggs}

[supervisor]
recipe = zc.recipe.egg
egg = supervisor

Vielen Dank
Matthias




_______________________________________________
zope mailing list
[hidden email]
https://mail.dzug.org/mailman/listinfo/zope