]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/bacula-sd-migration.conf.in
Port missing RestoreObject Plugin Config code from BEE.
[bacula/bacula] / regress / scripts / bacula-sd-migration.conf.in
1 #
2 # Default Bacula Storage Daemon Configuration file
3 #
4 #  For Bacula release 1.39
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 = @sdport@                  # 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 = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
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 Autochanger {
35   Name = DiskChanger
36   Changer Device = /dev/null
37   Changer Command =""
38   Device = Drive-0
39 }
40
41 Device {
42   Name = Drive-0                   # 
43   Device Type = File
44   Media Type = DiskChangerMedia
45   Archive Device = @tmpdir@
46   AutomaticMount = yes;               # when device opened, read it
47   Autochanger = yes
48   Drive Index = 0
49   AlwaysOpen = yes;
50   RemovableMedia = yes;
51 # Maximum File Size = 1000000
52 }
53
54 Device {
55   Name = FileStorage
56   Media Type = File
57   Archive Device = @tmpdir@
58   LabelMedia = yes;                   # lets Bacula label unlabeled media
59   Random Access = Yes;
60   AutomaticMount = yes;               # when device opened, read it
61   RemovableMedia = no;
62   AlwaysOpen = no;
63 }
64
65
66 # Send all messages to the Director, 
67 # mount messages also are sent to the email address
68 #
69 Messages {
70   Name = Standard
71   director = @hostname@-dir = all, !terminate
72 }
73
74 Cloud {
75   Name = DummyCloud
76   Driver = "File"
77   HostName = "@tmpdir@/cloud"
78   BucketName = "DummyBucket"
79   AccessKey = "DummyAccessKey"
80   SecretKey = "DummySecretKey"
81   Protocol = HTTPS
82   UriStyle = VirtualHost
83 }
84