Add quick support for PATH in non-standard location

parent 0d3f1c4e
......@@ -24,6 +24,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
import os
import shutil
from slapos.recipe.librecipe import GenericSlapRecipe
from subprocess import Popen
......@@ -44,7 +45,7 @@ class Recipe(GenericSlapRecipe):
self.substituteTemplate(self.getTemplateFilename('os_config.xml.in'),
os_configuration_parameter_dict))
path_list.append(os_config_file)
# Put modified accords configuration file
accords_configuration_parameter_dict = dict(
listen_ip = self.options['listen-ip']
......@@ -63,7 +64,7 @@ class Recipe(GenericSlapRecipe):
# Generate manifest
manifest_origin_location = self.options['manifest-source']
manifest_location = self.options['manifest-destination']
shutil.copy(manifest_origin_location, manifest_location)
path_list.append(manifest_location)
......@@ -79,7 +80,10 @@ class Recipe(GenericSlapRecipe):
server_url = self.server_url,
software_release_url = self.software_release_url,
key_file = self.key_file,
cert_file = self.cert_file,)
cert_file = self.cert_file,
path = '%s:%s' % (self.options['accords_bin_directory'],
os.environ.get('PATH', '')),
)
wrapper_location = self.createPythonScript(self.options['accords-wrapper'],
'%s.accords.runAccords' % __name__,
wrapper_config_dict)
......
......@@ -26,6 +26,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
import os
from slapos import slap
import signal
from subprocess import Popen
......@@ -48,8 +49,9 @@ def runAccords(accords_conf):
environment = dict(
LD_LIBRARY_PATH=accords_lib_directory,
PATH= accords_conf['path'],
)
# Set handler to stop ACCORDS when end of world comes
def sigtermHandler(signum, frame):
Popen(['./co-command', 'stop', '/service/*'],
......@@ -73,7 +75,7 @@ def runAccords(accords_conf):
# Parse answer
# XXX
connection_dict = dict(connection='hardcoded')
# Send information about published service to SlapOS Master
slap_connection = slap.slap()
slap_connection.initializeConnection(server_url, key_file, cert_file)
......
......@@ -5,8 +5,6 @@ extends =
../../component/lxml-python/buildout.cfg
../slapos.cfg
versions = versions
parts =
instance
instance-accords
......@@ -35,10 +33,6 @@ url = ${:_profile_base_location_}/instance-accords.cfg
output = ${buildout:directory}/template-accords.cfg
mode = 0644
[versions]
# Use SlapOS patched zc.buildout
zc.buildout = 1.6.0-dev-SlapOS-004
[networkcache]
# Cedric de Saint Martin signature certificate
signature-certificate-list =
......
......@@ -32,6 +32,7 @@ manifest-name = manifest
accords-wrapper = $${basedirectory:services}/accords
# Workaround
accords_lib_directory : ${accords:location}/lib
accords_bin_directory : ${accords:location}/bin
[rootdirectory]
recipe = slapos.cookbook:mkdirectory
......
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