예제 #1
0
파일: manager.py 프로젝트: enolfc/caso
    def __init__(self):
        utils.makedirs(CONF.spooldir)

        self.extractor_manager = None
        self.messenger = None

        self.lock_path = CONF.lock_path
예제 #2
0
파일: ssm.py 프로젝트: Fiskie/caso
 def __init__(self):
     # FIXME(aloga): try except here
     utils.makedirs(CONF.ssm.output_path)
예제 #3
0
    def __init__(self):
        utils.makedirs(CONF.spooldir)
        self.last_run_file = os.path.join(CONF.spooldir, "lastrun")

        self.extractor_manager = caso.extract.manager.Manager()
        self.messenger = caso.messenger.Manager()
예제 #4
0
파일: ssm.py 프로젝트: IFCA/caso
 def __init__(self):
     # FIXME(aloga): try except here
     utils.makedirs(CONF.ssm.output_path)
     self.header = "APEL-cloud-message: v%s" % self.version
예제 #5
0
파일: ssm.py 프로젝트: Pansanel/caso
 def __init__(self):
     # FIXME(aloga): try except here
     utils.makedirs(CONF.ssm.output_path)
     self.header = "APEL-cloud-message: v%s" % self.version
예제 #6
0
파일: manager.py 프로젝트: alvarolopez/caso
    def __init__(self):
        utils.makedirs(CONF.spooldir)
        self.last_run_file = os.path.join(CONF.spooldir, "lastrun")

        self.extractor_manager = caso.extract.manager.Manager()
        self.messenger = caso.messenger.Manager()
예제 #7
0
파일: ssm.py 프로젝트: verdurin/caso
 def __init__(self):
     # FIXME(aloga): try except here
     utils.makedirs(CONF.ssm.output_path)