From dc7379c5d082aa69cfd641141031a85ff1465866 Mon Sep 17 00:00:00 2001 From: Christophe Haen Date: Tue, 21 Jul 2020 13:24:29 +0200 Subject: [PATCH] ComponentInstaller uses --cfg --- FrameworkSystem/Client/ComponentInstaller.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FrameworkSystem/Client/ComponentInstaller.py b/FrameworkSystem/Client/ComponentInstaller.py index 764bb0a4d72..ef90a4d9621 100644 --- a/FrameworkSystem/Client/ComponentInstaller.py +++ b/FrameworkSystem/Client/ComponentInstaller.py @@ -1910,7 +1910,8 @@ def installComponent(self, componentType, system, component, extensions, compone [[ "%(componentType)s" = "agent" ]] && renice 20 -p $$ #%(bashVariables)s # -exec python $DIRAC/DIRAC/Core/scripts/dirac-%(componentType)s.py %(system)s/%(component)s %(componentCfg)s < /dev/null +exec python $DIRAC/DIRAC/Core/scripts/dirac-%(componentType)s.py \ + %(system)s/%(component)s --cfg %(componentCfg)s < /dev/null """ % {'bashrc': os.path.join(self.instancePath, 'bashrc'), 'bashVariables': bashVars, 'componentType': componentType,