Commenting out for now pulse recipe

parent 2db0381d
...@@ -38,26 +38,27 @@ class Recipe(BaseSlapRecipe): ...@@ -38,26 +38,27 @@ class Recipe(BaseSlapRecipe):
'template/%s' % template_name) 'template/%s' % template_name)
def _install(self): def _install(self):
self.path_list = [] # LDAP
self.requirements, self.ws = self.egg.working_set() # MYSQL
# XXX-Cedric : add logrotate? # Apache
self.cron_d = self.installCrond() # mmc (+pulse)
memcached_conf = self.installMemcached(ip=self.getLocalIPv4Address(),
port=11000)
ca_conf = self.installCertificateAuthority()
key, certificate = self.requestCertificate('Memcached')
stunnel_conf = self.installStunnel(self.getGlobalIPv6Address(),
self.getLocalIPv4Address(), 12345, memcached_conf['memcached_port'],
certificate, key, ca_conf['ca_crl'],
ca_conf['certificate_authority_path'])
self.linkBinary() #pulse2_conf = self.installPulse2(ip=self.getLocalIPv4Address(),
self.setConnectionDict(dict( # port=11000)
stunnel_ip = stunnel_conf['public_ip'], #
stunnel_port = stunnel_conf['public_port'], #ca_conf = self.installCertificateAuthority()
)) #key, certificate = self.requestCertificate('Memcached')
#
#stunnel_conf = self.installStunnel(self.getGlobalIPv6Address(),
# self.getLocalIPv4Address(), 12345, memcached_conf['memcached_port'],
# certificate, key, ca_conf['ca_crl'],
# ca_conf['certificate_authority_path'])
#
#self.linkBinary()
#self.setConnectionDict(dict(
# stunnel_ip = stunnel_conf['public_ip'],
# stunnel_port = stunnel_conf['public_port'],
#))
return self.path_list return self.path_list
def linkBinary(self): def linkBinary(self):
......
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