Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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"),
......
......@@ -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"],
......
......@@ -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"],
......
......@@ -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"],
......
......@@ -60,7 +60,7 @@ class StoreExecutor(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"],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment