]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/bacula-sd.conf.in
This commit was manufactured by cvs2svn to create tag
[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 }
19
20 #
21 # List Directors who are permitted to contact Storage daemon
22 #
23 Director {
24   Name = @hostname@-dir
25   Password = "@sd_password@"
26 }
27
28 #
29 # Devices supported by this Storage daemon
30 # To connect, the Director's bacula-dir.conf must have the
31 #  same Name and MediaType. 
32 #
33
34 Device {
35   Name = FileStorage
36   Media Type = File
37   Archive Device = /tmp
38   LabelMedia = yes;                   # lets Bacula label unlabeled media
39   Random Access = Yes;
40   AutomaticMount = yes;               # when device opened, read it
41   RemovableMedia = no;
42   AlwaysOpen = no;
43 }
44
45 #Device {
46 #  Name = DDS-4                        # 
47 #  Media Type = DDS-4
48 #  Archive Device = @TAPEDRIVE@
49 #  AutomaticMount = yes;               # when device opened, read it
50 #  AlwaysOpen = yes;
51 #  RemovableMedia = yes;
52 #  RandomAccess = no;
53 #}
54
55 #
56 # A very old Exabyte with no end of media detection
57 #
58 #Device {
59 #  Name = "Exabyte 8mm"
60 #  Media Type = "8mm"
61 #  Archive Device = @TAPEDRIVE@
62 #  Hardware end of medium = No;
63 #  AutomaticMount = yes;               # when device opened, read it
64 #  AlwaysOpen = Yes;
65 #  RemovableMedia = yes;
66 #  RandomAccess = no;
67 #}
68
69
70 # Send all messages to the Director, 
71 # mount messages also are sent to the email address
72 #
73 Messages {
74   Name = Standard
75   director = @hostname@-dir = all
76 }