You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
800 B
Python

import os, sys
import seiscomp.config, seiscomp.kernel
class Module(seiscomp.kernel.CoreModule):
def __init__(self, env):
seiscomp.kernel.CoreModule.__init__(
self, env, env.moduleName(__file__))
# High priority
self.order = -100
# This is a config module which writes the setup config to kernel.cfg
self.isConfigModule = True
def setup(self, setup_config):
cfgfile = os.path.join(self.env.SEISCOMP_ROOT, "etc", self.name + ".cfg")
cfg = seiscomp.config.Config()
cfg.readConfig(cfgfile)
try:
cfg.setString("organization", setup_config.getString(
"kernel.global.organization"))
except:
cfg.remove("organization")
cfg.writeConfig()
return 0