]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/stored/bacula-sd.conf.in
Add regex to FileSet + fix ACL crash + gnome1 Makefile + 30 second retry for DB
[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   Maximum Concurrent Jobs = 1
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
35 Device {
36   Name = FileStorage
37   Media Type = File
38   Archive Device = /tmp
39   LabelMedia = yes;                   # lets Bacula label unlabeled media
40   Random Access = Yes;
41   AutomaticMount = yes;               # when device opened, read it
42   RemovableMedia = no;
43   AlwaysOpen = no;
44 }
45
46 #
47 # A Linux or Solaris tape drive
48 #
49 #Device {
50 #  Name = DDS-4                        # 
51 #  Media Type = DDS-4
52 #  Archive Device = @TAPEDRIVE@
53 #  AutomaticMount = yes;               # when device opened, read it
54 #  AlwaysOpen = yes;
55 #  RemovableMedia = yes;
56 #  RandomAccess = no;
57 #}
58
59 #
60 # A FreeBSD tape drive
61 #
62 #Device {
63 #  Name = DDS-4 
64 #  Description = "DDS-4 for FreeBSD"
65 #  Media Type = DDS-4
66 #  Archive Device = /dev/nsa1
67 #  AutomaticMount = yes;               # when device opened, read it
68 #  AlwaysOpen = yes
69 #  Offline On Unmount = no
70 #  Hardware End of Medium = no
71 #  BSF at EOM = yes
72 #  Backward Space Record = no
73 #  Fast Forward Space File = no
74 #  TWO EOF = yes
75 #}
76
77 #
78 # A OnStream tape drive. 
79 # You need the kernel osst driver 0.9.14 or later, and
80 #   do "mt -f /dev/nosst0 defblksize 32768" once as root.
81 #
82 #Device {
83 #  Name = OnStream
84 #  Description = "OnStream drive on Linux"
85 #  Media Type = OnStream
86 #  Archive Device = @TAPEDRIVE@
87 #  AutomaticMount = yes;               # when device opened, read it
88 #  AlwaysOpen = yes
89 #  Offline On Unmount = no
90 ## The min/max blocksizes of 32768 are *required*
91 #  Minimum Block Size = 32768
92 #  Maximum Block Size = 32768
93 #}
94  
95
96  
97
98
99 #
100 # A very old Exabyte with no end of media detection
101 #
102 #Device {
103 #  Name = "Exabyte 8mm"
104 #  Media Type = "8mm"
105 #  Archive Device = @TAPEDRIVE@
106 #  Hardware end of medium = No;
107 #  AutomaticMount = yes;               # when device opened, read it
108 #  AlwaysOpen = Yes;
109 #  RemovableMedia = yes;
110 #  RandomAccess = no;
111 #}
112
113
114 # Send all messages to the Director, 
115 # mount messages also are sent to the email address
116 #
117 Messages {
118   Name = Standard
119   director = @hostname@-dir = all
120 }