Commit e72de5a3 authored by Julien Muchembled's avatar Julien Muchembled

NEO: new 'extra-options' recipe option

parent e93b6333
......@@ -25,6 +25,7 @@
#
##############################################################################
import os
import shlex
from slapos.recipe.librecipe import GenericBaseRecipe
from zc.buildout import UserError
......@@ -60,6 +61,7 @@ class NeoBaseRecipe(GenericBaseRecipe):
'--key', etc + 'neo.key',
)
args += self._getOptionList()
args += shlex.split(options.get('extra-options', ''))
return self.createWrapper(options['wrapper'], args)
def _getBindingAddress(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