-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
31 lines (30 loc) · 948 Bytes
/
config.yml
File metadata and controls
31 lines (30 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#24 hours ~ set to 'disabled' to disable automatic backups
delay: 01:00:00:00
#3 days ~ set to 'disabled' to disable old backup deletion
deleteifolderthan: 03:00:00:00
#the commands are executed before the files are backed up
commands:
enable: false
windows:
- 'rmdir mysqldumps /s /q'
- 'mkdir mysqldumps'
- '"C:\Program Files\MySQL\MySQL Workbench 8.0\mysqldump.exe" -uUsername -pPassword
database > "mysqldumps\%date%.sql" --column-statistics=0'
linux:
- 'rm mysqldumpold -R'
- 'mv mysqldump mysqldumpold'
- 'mkdir mysqldump'
- 'sudo mysqldump -uUsername -pPassword database > "mysqldump/%date%.sql"'
# optional if mysql sometimes bugs out
# - 'sudo service mysql restart -uUsername -pPassword'
#you may use subfolders like 'plugins/Essentials'
backuplist:
- mysqldump
- bukkit.yml
- paper.yml
- server.properties
- plugins
- world
- world_nether
- world_the_end
exclude-extensions: [.lock, .jar, examplefile.zip]