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() #pulse2_conf = self.installPulse2(ip=self.getLocalIPv4Address(),
key, certificate = self.requestCertificate('Memcached') # port=11000)
#
stunnel_conf = self.installStunnel(self.getGlobalIPv6Address(), #ca_conf = self.installCertificateAuthority()
self.getLocalIPv4Address(), 12345, memcached_conf['memcached_port'], #key, certificate = self.requestCertificate('Memcached')
certificate, key, ca_conf['ca_crl'], #
ca_conf['certificate_authority_path']) #stunnel_conf = self.installStunnel(self.getGlobalIPv6Address(),
# self.getLocalIPv4Address(), 12345, memcached_conf['memcached_port'],
self.linkBinary() # certificate, key, ca_conf['ca_crl'],
self.setConnectionDict(dict( # ca_conf['certificate_authority_path'])
stunnel_ip = stunnel_conf['public_ip'], #
stunnel_port = stunnel_conf['public_port'], #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