Hi,
I want to use crontab https://pypi.python.org/pypi/z3c.recipe.usercrontab/
so I can use https://plone.org/products/collective.contentrules.comingsoon
My question is on getting crontab to work. Below is the pertinent section of buildout
followed by the error I get when running buildout.
Parts Specification
#--------------------
Specifies the components that should be included in the buildout.
Most are defined in the base.cfg extension; you may add your
own if you need them at the end of this file.
parts =
instance
repozo
backup
zopepy
unifiedinstaller
mycronjob
############################################
Major Parts
----------------------
These common parts make use of sane base settings from
base.cfg. To customize a part, just add whatever options
you need. Read base.cfg for common settings.
[instance]
<= instance_base
recipe = plone.recipe.zope2instance
http-address = 20545
recipe = plone.recipe.zope2instance
############################################
[mycronjob]
recipe = z3c.recipe.usercrontab
times = 0 12 * * *
command = echo nothing happens at noon
comment = this is for the coming soon content rule
############################################
Error message I get:
While:
Installing.
Error: Missing option: buildout:parts
Thoughts on what I am missing