]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/bacula-sd.conf.in
Initial revision
[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   Address = @hostname@
16   SDPort = @sd_port@                  # Director's port      
17   WorkingDirectory = "@working_dir@"
18   Pid Directory = "@piddir@"
19   Subsys Directory = "@subsysdir@"
20 }
21
22 #
23 # List Directors who are permitted to contact Storage daemon
24 #
25 Director {
26   Name = @hostname@-dir
27   Password = "@sd_password@"
28 }
29
30 #
31 # Devices supported by this Storage daemon
32 # To connect, the Director's bacula-dir.conf must have the
33 #  same Name and MediaType. 
34 #
35 Device {
36   Name = "HP DLT 80"
37   Media Type = DLT8000
38   Archive Device = @TAPEDRIVE@
39   AutomaticMount = yes;               # when device opened, read it
40   AlwaysOpen = yes;
41   RemovableMedia = yes;
42 }
43
44 #Device {
45 #  Name = SDT-7000                     # 
46 #  Media Type = DDS-2
47 #  Archive Device = @TAPEDRIVE@
48 #  AutomaticMount = yes;               # when device opened, read it
49 #  AlwaysOpen = yes;
50 #  RemovableMedia = yes;
51 #}
52
53 #Device {
54 #  Name = Floppy
55 #  Media Type = Floppy
56 #  Archive Device = /mnt/floppy
57 #  RemovableMedia = yes;
58 #  Random Access = Yes;
59 #  AutomaticMount = yes;               # when device opened, read it
60 #  AlwaysOpen = no;
61 #}
62
63 #Device {
64 #  Name = FileStorage
65 #  Media Type = File
66 #  Archive Device = /tmp
67 #  LabelMedia = yes;                   # lets Bacula label unlabelled media
68 #  Random Access = Yes;
69 #  AutomaticMount = yes;               # when device opened, read it
70 #  RemovableMedia = no;
71 #  AlwaysOpen = no;
72 #}
73
74 #
75 # A very old Exabyte with no end of media detection
76 #
77 #Device {
78 #  Name = "Exabyte 8mm"
79 #  Media Type = "8mm"
80 #  Archive Device = @TAPEDRIVE@
81 #  Hardware end of medium = No;
82 #  AutomaticMount = yes;               # when device opened, read it
83 #  AlwaysOpen = Yes;
84 #  RemovableMedia = yes;
85 #}
86
87
88 # Send all messages to the Director, 
89 # mount messages also are sent to the email address
90 #
91 Messages {
92   Name = Standard
93   director = @hostname@-dir = all
94 # operator = @job_email@ = mount
95 }