]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/bacula-sd.conf.in
Server address binding + bscan updates -- see kes25Sep02
[bacula/bacula] / bacula / src / stored / bacula-sd.conf.in
1 #
2 # Default Bacula Storage Daemon Configuration file
3 #
4 #  For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@ @DISTVER@
5 #
6 # You may need to change the name of your tape drive
7 #   on the "Archive Device" directive in the Device
8 #   resource.  If you change the Name and/or the 
9 #   "Media Type" in the Device resource, please ensure
10 #   that dird.conf has corresponding changes.
11 #
12
13 Storage {                             # definition of myself
14   Name = @hostname@-sd
15   SDPort = @sd_port@                  # Director's port      
16   WorkingDirectory = "@working_dir@"
17   Pid Directory = "@piddir@"
18   Subsys Directory = "@subsysdir@"
19 }
20
21 #
22 # List Directors who are permitted to contact Storage daemon
23 #
24 Director {
25   Name = @hostname@-dir
26   Password = "@sd_password@"
27 }
28
29 #
30 # Devices supported by this Storage daemon
31 # To connect, the Director's bacula-dir.conf must have the
32 #  same Name and MediaType. 
33 #
34 Device {
35   Name = "HP DLT 80"
36   Media Type = DLT8000
37   Archive Device = @TAPEDRIVE@
38   AutomaticMount = yes;               # when device opened, read it
39   AlwaysOpen = yes;
40   RemovableMedia = yes;
41 }
42
43 #Device {
44 #  Name = SDT-7000                     # 
45 #  Media Type = DDS-2
46 #  Archive Device = @TAPEDRIVE@
47 #  AutomaticMount = yes;               # when device opened, read it
48 #  AlwaysOpen = yes;
49 #  RemovableMedia = yes;
50 #}
51
52 #Device {
53 #  Name = Floppy
54 #  Media Type = Floppy
55 #  Archive Device = /mnt/floppy
56 #  RemovableMedia = yes;
57 #  Random Access = Yes;
58 #  AutomaticMount = yes;               # when device opened, read it
59 #  AlwaysOpen = no;
60 #}
61
62 #Device {
63 #  Name = FileStorage
64 #  Media Type = File
65 #  Archive Device = /tmp
66 #  LabelMedia = yes;                   # lets Bacula label unlabelled media
67 #  Random Access = Yes;
68 #  AutomaticMount = yes;               # when device opened, read it
69 #  RemovableMedia = no;
70 #  AlwaysOpen = no;
71 #}
72
73 #
74 # A very old Exabyte with no end of media detection
75 #
76 #Device {
77 #  Name = "Exabyte 8mm"
78 #  Media Type = "8mm"
79 #  Archive Device = @TAPEDRIVE@
80 #  Hardware end of medium = No;
81 #  AutomaticMount = yes;               # when device opened, read it
82 #  AlwaysOpen = Yes;
83 #  RemovableMedia = yes;
84 #}
85
86
87 # Send all messages to the Director, 
88 # mount messages also are sent to the email address
89 #
90 Messages {
91   Name = Standard
92   director = @hostname@-dir = all
93 # operator = @job_email@ = mount
94 }