Skip to content

Commit

Permalink
sweep: DIRACGrid#7137 fix: look also for DIRAC.rootPath/etc/dirac.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni authored and web-flow committed Aug 1, 2023
1 parent 1ce2827 commit c68f2be
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/DIRAC/ConfigurationSystem/Client/LocalConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,9 @@ def __loadCFGFiles(self):
Loads possibly several cfg files, in order:
1. cfg files pointed by DIRACSYSCONFIG env variable (comma-separated)
2. ~/.dirac.cfg
3. cfg files specified in addCFGFile calls
4. cfg files that come from the command line
3. DIRAC.rootPath/etc/dirac.cfg
4. cfg files specified in addCFGFile calls
5. cfg files that come from the command line
"""
errorsList = []
foundCFGFile = False
Expand All @@ -467,7 +468,11 @@ def __loadCFGFiles(self):
foundCFGFile = True
gConfigurationData.loadFile(os.path.expanduser("~/.dirac.cfg"))

# 3. cfg files specified in addCFGFile calls
# 3. defaultCFGFile = os.path.join(DIRAC.rootPath, "etc", "dirac.cfg")
if os.path.isfile(os.path.join(DIRAC.rootPath, "etc", "dirac.cfg")):
foundCFGFile = True

# 4. cfg files specified in addCFGFile calls
for fileName in self.additionalCFGFiles:
if os.path.isfile(fileName):
foundCFGFile = True
Expand All @@ -477,7 +482,7 @@ def __loadCFGFiles(self):
gLogger.debug(f"Could not load file {fileName}: {retVal['Message']}")
errorsList.append(retVal["Message"])

# 4. cfg files that come from the command line
# 5. cfg files that come from the command line
for fileName in self.cliAdditionalCFGFiles:
if os.path.isfile(fileName):
foundCFGFile = True
Expand Down

0 comments on commit c68f2be

Please sign in to comment.