Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2016
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. #######################################
  2. #
  3. # DriveBackup - by Ratismal
  4. #
  5. #######################################
  6.  
  7. # Should the plugin look for updates?
  8. update-check: true
  9.  
  10. # Should metrics be enabled
  11. metrics: true
  12.  
  13. # How often to do backups (in minutes). Set to -1 to disable automatic backups.
  14. delay: 1440
  15. # How many backups to keep before deleting the oldest one. Set to -1 to disable automatic deletes.
  16. keep-count: 3
  17.  
  18. # Expandable list of things to back up.
  19. backup-list:
  20. # The backup list is comprised of three things:
  21. # - folder names
  22. # - file name formats
  23. # - whether this plugin should create the backup
  24. # The file name format is what the backup's naming scheme is
  25. # For more information about timedate formatting, see
  26. # http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.html
  27. # To verify they are being formatted correctly, do /drivebackup list
  28. # Correct formatting is important, as this is how the plugin knows
  29. # which backup is the most recent!
  30. #
  31. # For example, if you wanted to back up crash reports, you would do:
  32. # crash-reports:
  33. # format: "'crash-'yyyy-MM-dd_HH.mm.ss'-server.zip'"
  34. # create: true
  35. # The 'crash-reports:' part refers to the folder, and the "'crash-'yyyy-MM-dd_HH.mm.ss'-server.txt'" refers to
  36. # what format the file name is. Since create is set to true, the plugin will take the crash-reports folder,
  37. # zip it into a file according to the format, and upload it.
  38. # You can also use the blacklist key to not include specified files
  39. # blacklist:
  40. # - "dontbackup"
  41. # - "thesefolders"
  42. # - "orthisfile.txt"
  43. world:
  44. format: "'Backup-world-'yyyy-M-d--HH-mm'.zip'"
  45. create: true
  46. jar1nether:
  47. format: "'Backup-jar1nether-'yyyy-M-d--HH-mm'.zip'"
  48. create: true
  49. Jar1World:
  50. format: "'Backup-Jar1World-'yyyy-M-d--HH-mm'.zip'"
  51. create: true
  52. world_nether:
  53. format: "'Backup-world_nether-'yyyy-M-d--HH-mm'.zip'"
  54. create: true
  55. world_the_end:
  56. format: "'Backup-world_the_end-'yyyy-M-d--HH-mm'.zip'"
  57. create: true
  58.  
  59. # Where the backups are stored locally
  60. dir: "backups"
  61.  
  62. # Folder in to save backups on remote server
  63. destination: "backups"
  64.  
  65. # Option to keep local backup directory clean after remote upload
  66. keep-local-backup-after-upload: true
  67.  
  68. # Google Drive configs
  69. googledrive:
  70. enabled: false
  71. onedrive:
  72. enabled: false
  73. ftp:
  74. enabled: true
  75. # Server to connect to
  76. hostname: clearedforsecurity
  77. # Port to connect to
  78. port: 25
  79. # Set to true to use FTPS instead of FTP
  80. FTPS: false
  81. # Username
  82. username: clearedforsecurity
  83. # Password
  84. password: clearedforsecurity
  85. # The directory to work in (leave blank for default)
  86. working-dir:
  87.  
  88. # Messages
  89. no-perm: "You don't have permission to do this!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement