Advertisement
Guest User

Untitled

a guest
Oct 4th, 2013
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. # Interval between map saves in hours, 0.25 is 15 minutes, 1.0 is 1 hour and so on. (1 hour is default).
  2. # backup-interval-hours: 1.0
  3. # #
  4. # List of worlds to backup, leave it empty to backup all worlds
  5. # backup-worlds:
  6. # #
  7. # List of additional folders to backup (relative paths only). The 'plugins' folder can contain open or locked files!
  8. # Depending on what plugins you have installed, it may not be a good idea to try to backup that folder.
  9. # Usually plugins that write a large amounts of data frequently (like some loggers) are risky.
  10. # backup-folders:
  11. # - plugins
  12. # #
  13. # The folder where backups are stored. Can be absolute path or relative to the working directory.
  14. # backup-file: backups/
  15. # #
  16. # The backup file name. See Java's SimpleDateFormat for formatting help.
  17. # backup-date-format: yyyy-MM-dd-HH-mm-ss
  18. # #
  19. # Should a backup be created if no one was online since the last backup?
  20. # backup-empty-server: false
  21. # #
  22. # If zipping is disabled, the world files will be copied to a folder.
  23. # If zipping is enabled, the world files will be compressed in a zip file.
  24. # disable-zipping: false
  25. # #
  26. # Backup delete schedule
  27. # For each interval a desired backup frequency is specified, for example:
  28. # delete-schedule:
  29. # intervals:
  30. # - 3d
  31. # - 4w
  32. # - 6m
  33. # interval-frequencies:
  34. # - 1d
  35. # - 1w
  36. # - 0
  37. # Translates to:
  38. # for backups older than 3 days, leave only 1 backup per day;
  39. # for backups older than 4 weeks + 3 days, leave only 1 backup per week;
  40. # for backups older than 6 months + 4 weeks + 3 days, do not keep any;
  41. # Supported symbols are ('h' = hour, 'd' = day, 'w' = week, 'm' = month, 'y' = year).
  42. # Fractional numbers are not supported.
  43. # #
  44. # true if a message should be broadcast when backup starts or ends
  45. # broadcast-message: true
  46. # #
  47. # Message tag shown in the chat when the server is backing up.
  48. # Example: if the message was set to '[Bukkit is awesome]' you
  49. # would see "[Bukkit is awesome] Starting Backup" when the
  50. # plugin backs up
  51. # backup-message: '[SimpleBackup]'
  52. # #
  53. # The 'backup starting' message that is broadcast when backup starts
  54. # custom-backup-message: Backup starting
  55. # #
  56. # The 'backup completed' message that is broadcast when backup ends
  57. # custom-backup-message-end: Backup completed
  58. # #
  59. # The time of day to make backups (makes sense with daily backups)
  60. # start-time: '03:00'
  61. # #
  62.  
  63. backup-interval-hours: 4.0
  64. backup-file: backups/
  65. backup-date-format: yyyy-MM-dd-HH-mm-ss
  66. backup-empty-server: false
  67. disable-zipping: false
  68. delete-schedule:
  69. intervals:
  70. - 2d
  71. - 4w
  72. - 6m
  73. interval-frequencies:
  74. - 1d
  75. - 0
  76. - 0
  77. broadcast-message: true
  78. backup-message: '[TagCraftMC Backup]'
  79. custom-backup-message: Backup Starting, hold on to your hats.
  80. custom-backup-message-end: Backup complete, you may let go of your hats.
  81. backup-folders:
  82. - plugins
  83. - mstore
  84. - VIPShops
  85. - TagCraftMC_Peace
  86. - TagCraftMC_PVP
  87. - TagCraftMC_Spawn
  88. - TagCraftMC_VIPShops
  89. - lib
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement