]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/bacula-sd.conf.in
Final changes
[bacula/bacula] / regress / scripts / bacula-sd.conf.in
1 #
2 # Default Bacula Storage Daemon Configuration file
3 #
4 #  For Bacula release 1.33
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 = rufus-sd
15   SDPort = 8103                  # Director's port      
16   WorkingDirectory = "/home/kern/bacula/regress/working"
17   Pid Directory = "/home/kern/bacula/regress/working"
18 }
19
20 #
21 # List Directors who are permitted to contact Storage daemon
22 #
23 Director {
24   Name = rufus-dir
25   Password = "BzlEl8haeFmnv/Lv8V6zDzUBgFFQNsUtny6VkmccQpOy"
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 = @tmpdir@
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 = /dev/nst0
49 #  AutomaticMount = yes;               # when device opened, read it
50 #  AlwaysOpen = yes;
51 #  RemovableMedia = yes;
52 #}
53
54 #
55 # A very old Exabyte with no end of media detection
56 #
57 #Device {
58 #  Name = "Exabyte 8mm"
59 #  Media Type = "8mm"
60 #  Archive Device = /dev/nst0
61 #  Hardware end of medium = No;
62 #  AutomaticMount = yes;               # when device opened, read it
63 #  AlwaysOpen = Yes;
64 #  RemovableMedia = yes;
65 #}
66
67
68 # Send all messages to the Director, 
69 # mount messages also are sent to the email address
70 #
71 Messages {
72   Name = Standard
73   director = rufus-dir = all, !terminate
74 }