crazyhoorse961

TethaBackups

Jan 28th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.14 KB | None | 0 0
  1. #What should be the folders/files being backuped?
  2. backup-folders:
  3.  - world
  4.   - world_the_end
  5.   - plugins
  6. #How often in ticks the server should do a backup?
  7. #Math like 24 * 3600 isn't allowed
  8. #You should do one everyday
  9. backup-time: 1728000
  10. #What should be the backup name format?
  11. #Placeholders:
  12. # - %date% (Replaces the date YY/MM/DD of the backup)
  13. backup-name: 'backup-%date%'
  14. #Should the server broadcast a message when a backup is done?
  15. backup-msg-enabled: true
  16. #If the option above is true, what should the message be?
  17. backup-msg: '&aA backup has been executed!'
  18.  
  19. #Well, yeah. You can transfer files to a server, if it have SFTP support
  20. #The location of the backups will be /backups/... (still in a .zip)
  21. sftp:
  22. #If the sftp function is enabled, it won't write files on your local server, but on your other sftp server, it will
  23.   enabled: false
  24. #The port where the plugin should connect
  25.   port: 22
  26. #The host, it could be a server ip, remember that with OVH/KimSufi/SyS, it is their hostname (if you use backup storage)
  27.   host: 0.0.0.0
  28. #The username of the server
  29.   user: testuser
  30. #The password of the user
  31.   password: userpassword
Add Comment
Please, Sign In to add comment