Advertisement
susnake

bareos-sd

May 7th, 2014
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. #
  2. # Default Bareos Storage Daemon Configuration file
  3. #
  4. # For Bareos release 14.1.0.git.1397033861-701.5 (04/10/14) -- Windows @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 = mypc-03-sd
  15. Maximum Concurrent Jobs = 20
  16.  
  17. # remove comment in next line to load plugins from specified directory
  18. # Plugin Directory = C:/Program Files/Bareos/Plugins
  19. }
  20.  
  21. #
  22. # List Directors who are permitted to contact Storage daemon
  23. #
  24. Director {
  25. Name = mypc-03-dir
  26. Password = "DJVIZc8jaYhfI4VImJ5XCT4GZdGIFfsxCBTLsmu18hOg"
  27. }
  28.  
  29. #
  30. # Restricted Director, used by tray-monitor to get the
  31. # status of the storage daemon
  32. #
  33. Director {
  34. Name = mypc-03-mon
  35. Password = "ACVrJKAvvF+vucS4ldyB65HF3dQ/xATBMJm8zGyJQFCf"
  36. Monitor = yes
  37. }
  38.  
  39. #
  40. # Devices supported by this Storage daemon
  41. # To connect, the Director's bareos-dir.conf must have the same Name and MediaType.
  42. #
  43. Device {
  44. Name = FileStorage
  45. Media Type = File
  46. Archive Device = C:/bareos-storage
  47. LabelMedia = yes; # lets Bareos label unlabeled media
  48. Random Access = Yes;
  49. AutomaticMount = yes; # when device opened, read it
  50. RemovableMedia = no;
  51. AlwaysOpen = no;
  52. }
  53.  
  54. #
  55. # Send all messages to the Director,
  56. # mount messages also are sent to the email address
  57. #
  58. Messages {
  59. Name = Standard
  60. director = mypc-03-dir = all
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement