Роль для настройки сервера майнкрафт под Alpine Linux
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
# Working dir
|
|
cd /home/{{ server_user }}/backups
|
|
# Delete old backups
|
|
find . -name "backup_*.tar.gz" -type f -mtime +1 -delete
|
|
# Start backup
|
|
rc-service minecraftd backup
|
|
|