Advertisement
man_in_the_hill

bacula-sd.conf

Aug 29th, 2011
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. # Default Bacula Storage Daemon Configuration file
  2. #
  3. # For Bacula release 5.0.3 (04 August 2010) -- debian 5.0.8
  4. #
  5. # You may need to change the name of your tape drive
  6. # on the "Archive Device" directive in the Device
  7. # resource. If you change the Name and/or the
  8. # "Media Type" in the Device resource, please ensure
  9. # that dird.conf has corresponding changes.
  10. #
  11.  
  12. Storage { # definition of myself
  13. Name = proxmox-lespointus-sd
  14. SDPort = 9103 # Director's port
  15. WorkingDirectory = "/var/bacula/working"
  16. Pid Directory = "/var/run"
  17. Maximum Concurrent Jobs = 20
  18. }
  19.  
  20. #
  21. # List Directors who are permitted to contact Storage daemon
  22. #
  23. Director {
  24. Name = proxmox-lespointus-dir
  25. Password = "dUuBWI5LujmgBq3QTV2qdC2+v/m8BAqkeZaCp1ioCVLH"
  26. }
  27.  
  28. #
  29. # Restricted Director, used by tray-monitor to get the
  30. # status of the storage daemon
  31. #
  32. Director {
  33. Name = proxmox-lespointus-mon
  34. Password = "mUDEUsHeM/IOj4U/IyaW2ypejeEq8j2L71KAwdYRsrxf"
  35. Monitor = yes
  36. }
  37.  
  38. #
  39. # Note, for a list of additional Device templates please
  40. # see the directory <bacula-source>/examples/devices
  41. # Or follow the following link:
  42. # http://bacula.svn.sourceforge.net/viewvc/bacula/trunk/bacula/examples/devices/
  43. #
  44.  
  45. #
  46. # Devices supported by this Storage daemon
  47. # To connect, the Director's bacula-dir.conf must have the
  48. # same Name and MediaType.
  49. #
  50.  
  51. Device {
  52. Name = "UsbStorageIrris"
  53. Media Type = File
  54. Archive Device = "/mnt/backup/bacula/irris"
  55. LabelMedia = yes; # lets Bacula label unlabeled media
  56. Random Access = Yes;
  57. AutomaticMount = yes; # when device opened, read it
  58. RemovableMedia = no;
  59. AlwaysOpen = yes;
  60. }
  61.  
  62. Device {
  63. Name = "UsbStorageLinux"
  64. Media Type = File
  65. Archive Device = "/mnt/backup/bacula/linux"
  66. LabelMedia = yes; # lets Bacula label unlabeled media
  67. Random Access = Yes;
  68. AutomaticMount = yes; # when device opened, read it
  69. RemovableMedia = no;
  70. AlwaysOpen = yes;
  71. }
  72.  
  73. Device {
  74. Name = "UsbStorageCatalog"
  75. Media Type = File
  76. Archive Device = "/mnt/backup/bacula/catalog"
  77. LabelMedia = yes; # lets Bacula label unlabeled media
  78. Random Access = Yes;
  79. AutomaticMount = yes; # when device opened, read it
  80. RemovableMedia = no;
  81. AlwaysOpen = yes;
  82. }
  83.  
  84. #
  85. # Send all messages to the Director,
  86. # mount messages also are sent to the email address
  87. #
  88. Messages {
  89. Name = Standard
  90. director = proxmox-lespointus-dir = all
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement