Init to winit

This commit is contained in:
Joe S 2020-08-18 18:15:42 -04:00
parent 8c8065a819
commit b78d206bf9
3 changed files with 32 additions and 6 deletions

View File

@ -31,21 +31,30 @@ Catalog {
Autochanger { # New resource Autochanger { # New resource
Name = Iron-Autochanger Name = Iron-Autochanger
Address = 10.85.3.34 Address = 10.85.3.34
#Address = 10.85.3.35
SDPort = 9103 SDPort = 9103
Password = "iamnotacrook" Password = "iamnotacrook"
Device = Drive-1-LTO-3 Device = Drive-1-LTO-3, Drive-0-LTO-3
Media Type = LTO-3 Media Type = LTO-3
Maximum Concurrent Jobs = 2 Maximum Concurrent Jobs = 3
}
Storage { # Can have multiple of these per autochanger
Name = Drive-0-LTO-3
Address = 10.85.3.34
SDPort = 9103
Password = "iamnotacrook"
Device = Drive-0-LTO-3
Media Type = LTO-3
Maximum Concurrent Jobs = 1
Autochanger = Iron-Autochanger # New directive
} }
Storage { # Can have multiple of these per autochanger Storage { # Can have multiple of these per autochanger
Name = Drive-1-LTO-3 Name = Drive-1-LTO-3
Address = 10.85.3.34 Address = 10.85.3.34
#Address = 10.85.3.35
SDPort = 9103 SDPort = 9103
Password = "iamnotacrook" Password = "iamnotacrook"
Device = LTO-3 Device = Drive-1-LTO-3
Media Type = LTO-3 Media Type = LTO-3
Maximum Concurrent Jobs = 1 Maximum Concurrent Jobs = 1
Autochanger = Iron-Autochanger # New directive Autochanger = Iron-Autochanger # New directive

View File

@ -10,6 +10,7 @@ Client {
File Retention = 8 months # This is how long you'll be able to restore individual files for, per job File Retention = 8 months # This is how long you'll be able to restore individual files for, per job
Job Retention = 30 years # Archive jobs cant be pruned for 30 years Job Retention = 30 years # Archive jobs cant be pruned for 30 years
AutoPrune = yes # Prune expired Jobs/Files AutoPrune = yes # Prune expired Jobs/Files
Maximum Concurrent Jobs = 20 # Max jobs
} }
JobDefs { # Default User Job JobDefs { # Default User Job
@ -21,6 +22,8 @@ JobDefs { # Default User Job
Schedule = EveryTwoDays Schedule = EveryTwoDays
Messages = JoesMail Messages = JoesMail
Prefer Mounted Volumes = no # This overrides the default, making jobs opt to use a new volume rather than use an already mounted one
Spool Data = yes # Spool data or dont on the sd Spool Data = yes # Spool data or dont on the sd
SpoolSize = 10737418240 SpoolSize = 10737418240
@ -61,6 +64,8 @@ JobDefs { # Default System Job
Schedule = EveryTwoDays Schedule = EveryTwoDays
Messages = JoesMail Messages = JoesMail
Prefer Mounted Volumes = no # This overrides the default, making jobs opt to use a new volume rather than use an already mounted one
Spool Data = yes # Spool data or dont on the sd Spool Data = yes # Spool data or dont on the sd
SpoolSize = 16106127360 SpoolSize = 16106127360

View File

@ -112,3 +112,15 @@ FileSet {
File = "/mnt/NextCloud/data/evelynn/" File = "/mnt/NextCloud/data/evelynn/"
} }
} }
# Christina's backup on zinc
FileSet {
Name = "Christina Backup"
Include {
Options {
signature = MD5
compression=GZIP
}
File = "/mnt/NextCloud/data/Christina/"
}
}