-
Notifications
You must be signed in to change notification settings - Fork 0
/
bacula-sd.conf
107 lines (97 loc) · 2.89 KB
/
bacula-sd.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
Storage { # definition of myself
Name = cronus-sd
SDPort = 9103 # Director's port
WorkingDirectory = "/var/share/bacula/working"
Pid Directory = "/var/run"
Plugin Directory = "/opt/bacula/plugins"
Maximum Concurrent Jobs = 20
}
#
# List Directors who are permitted to contact Storage daemon
#
Director {
Name = cronus-dir
Password = "@SDPASSWORD@"
}
#
# Restricted Director, used by tray-monitor to get the
# status of the storage daemon
#
Director {
Name = cronus-mon
Password = "@MONPASSWORD@"
Monitor = yes
}
#
# Note, for a list of additional Device templates please
# see the directory <bacula-source>/examples/devices
# Or follow the following link:
# http://www.bacula.org/git/cgit.cgi/bacula/tree/bacula/examples/devices?h=Branch-7.4
#
#
# Devices supported by this Storage daemon
# To connect, the Director's bacula-dir.conf must have the
# same Name and MediaType.
#
Autochanger {
Name = DiskChanger
Device = FileStorage
Description = "Local Disks"
Changer Command = ""
Changer Device = /dev/null
}
Device {
Name = FileStorage
Media Type = Disks
Archive Device = "/var/share/bacula/backup"
LabelMedia = yes; # lets Bacula label unlabeled media
Random Access = Yes;
AutomaticMount = yes; # when device opened, read it
RemovableMedia = no;
AlwaysOpen = no;
Maximum Concurrent Jobs = 5
Maximum Volume Size = 8G
##Maximum File Size = 20GB
}
# Definition of LTO-5 tape Autochanger device
Autochanger {
Name = QUANTUMTapeLibrary
Device = LTO5
Description = "Quantum Scalar i40 Library"
Changer Device = /dev/scsi/changer/c10t500308C38CDAB001d1
Changer Command = "/opt/bacula/scripts/mtx-changer %c %o %S %a %d"
}
Device {
Name = LTO5
Description = "Quantum Scalar i40 Library LTO-5 HP"
Media Type = LTO
Archive Device = /dev/rmt/0cbn
Autochanger = yes
Drive Index = 0
Offline On Unmount = no
#Hardware End of Medium = No # Default YES: Via tape test
#BSF at EOM = no # Default NO: But Try yes
#Backward Space Record = no # Default YES:
#Backward Space File = no # Default YES:
#Fast Forward Space File = No # Default YES: Via tape test
#TWO EOF = yes # Default NO: But Try yes
Spool Directory = /var/share/bacula/spooling # Size of that
Maximum Spool Size = 100G
Maximum File Size = 10GB
Maximum Concurrent Jobs = 8
AutomaticMount = yes
AlwaysOpen = yes
RemovableMedia = yes
RandomAccess = no
Changer Command = "/opt/bacula/scripts/mtx-changer %c %o %S %a %d"
Changer Device = /dev/scsi/changer/c10t500308C38CDAB001d1
AutoChanger = yes
}
#
# Send all messages to the Director,
# mount messages also are sent to the email address
#
Messages {
Name = Standard
director = cronus-dir = all
}