I was trying to install zeo service from puppet master in windows agent and I got the following error:
Error: Failed to apply catalog: Could not find dependency Class[Zeo] for Class[Z eo::Install] in PUPPET
I have module called zeo and its manifests init.pp and make.pp and install.pp
But Its failing to reach init.pp and class zeo
# make.pp
class zeo::make {
notify{" make.pp client mass section zope/init.pp": }
require zeo
#....
#....
#....
}
# install.pp
class zeo::install {
notify{"client mass section zope/init.pp ${title}": }
require zeo::make
#....
#....
#....
}
# init.pp
class zeo {
require prerequisite::install
#....
#....
#....
}
Please help me to resolve this