Commit 0431788d authored by Cristiano Urban's avatar Cristiano Urban
Browse files

IBM Spectrum Protect integrations: renamed config section '[spectrum_archive]'...


IBM Spectrum Protect integrations: renamed config section '[spectrum_archive]' in '[spectrum_protect]'.

Signed-off-by: default avatarCristiano Urban <cristiano.urban@inaf.it>
parent 1ab0ab91
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -30,8 +30,8 @@ port = 6379
; db index representing the db that stores the scheduling queues, default is 0
db_sched = 0

# Spectrum Archive
[spectrum_archive]
# IBM Spectrum Protect
[spectrum_protect]
; hostname or IP address of the tape library frontend
host = <tape_frontend_hostname>
; SSH port
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ class DOIExecutor(TaskExecutor):
                                  1,
                                  1,
                                  self.logger)
        params = config.loadSection("spectrum_archive")
        params = config.loadSection("spectrum_protect")
        #self.tapePool = params["tape_pool"]
        self.tapeClient = TapeClient(params["host"],
                                     params.getint("port"),
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ class ImportExecutor(TaskExecutor):
                                  1,
                                  1,
                                  self.logger)
        params = config.loadSection("spectrum_archive")
        params = config.loadSection("spectrum_protect")
        self.tapeClient = TapeClient(params["host"],
                                     params.getint("port"),
                                     params["user"],
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ class RetrieveExecutor(TaskExecutor):
                                  1,
                                  1,
                                  self.logger)
        params = config.loadSection("spectrum_archive")
        params = config.loadSection("spectrum_protect")
        self.tapeClient = TapeClient(params["host"],
                                     params.getint("port"),
                                     params["user"],
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ class StorageRPCServer(RedisRPCServer):
                                  1,
                                  2,
                                  self.logger)
        params = config.loadSection("spectrum_archive")
        params = config.loadSection("spectrum_protect")
        self.tapeClient = TapeClient(params["host"],
                                     params.getint("port"),
                                     params["user"],
Loading