Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2011
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. #
  2. # Default Bacula Storage Daemon Configuration file
  3. #
  4. # For Bacula release 5.0.1 (24 February 2010) -- PLD/Linux PLD
  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 = bacula-sd
  15. SDPort = 9103 # Director's port
  16. WorkingDirectory = "/var/lib/bacula"
  17. Pid Directory = "/var/run"
  18. Maximum Concurrent Jobs = 20
  19. Heartbeat Interval = 30
  20. }
  21.  
  22. #
  23. # List Directors who are permitted to contact Storage daemon
  24. #
  25. Director {
  26. Name = bacula-dir
  27. Password = "pass"
  28. }
  29.  
  30. #
  31. # Restricted Director, used by tray-monitor to get the
  32. # status of the storage daemon
  33. #
  34. Director {
  35. Name = bacula-mon
  36. Password = "pass"
  37. Monitor = yes
  38. }
  39.  
  40. Autochanger {
  41. Name = Maximus-AC
  42. Device = Maximus-PV-124T
  43. Changer Command = "/usr/lib64/bacula/mtx-changer %c %o %S %a %d"
  44. Changer Device = /dev/sg3
  45. }
  46.  
  47. Device {
  48. Name = Maximus-PV-124T
  49. Media Type = LTO-3
  50. Archive Device = /dev/nst0
  51. AutomaticMount = yes; # when device opened, read it
  52. AlwaysOpen = yes;
  53. RemovableMedia = yes;
  54. RandomAccess = no;
  55. Changer Command = "/usr/lib64/bacula/mtx-changer %c %o %S %a %d"
  56. Changer Device = /dev/sg3
  57. AutoChanger = yes
  58. Alert Command = "sh -c 'smartctl -H -l error %c'"
  59. }
  60.  
  61. #
  62. # Send all messages to the Director,
  63. # mount messages also are sent to the email address
  64. #
  65. Messages {
  66. Name = Standard
  67. director = bacula-dir = all
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement