When working with munin.zope your buildout should look like this:
parts =
...
munin
eggs =
...
munin.zope
[munin]
recipe = zc.recipe.egg
eggs = munin.zope
scripts = munin=munin
arguments = http_address='${ports:client1}',ip_address='${hosts:client1}', user='${users:credentials}'
The arguments line was not very clear to me. Here's how it works.
'http_address' is really the port number (e.g. 8080) that your zope runs on.
'ip_address' can be an ip address or domain name (e.g. localhost, or 1.2.33.44)
'user' is really the user credentials in the form 'username:password'.
So future me, hope that helps to save you a few days of knocking your head on the wall.
No comments:
Post a Comment