7 lines
322 B
Bash
Executable file
7 lines
322 B
Bash
Executable file
#!/usr/bin/env bash
|
|
i=0
|
|
while [ -e /srv/minecraft/backups/`date --iso`.$i.tar.xz ]; do
|
|
(( i++ ))
|
|
done
|
|
tar -caf /srv/minecraft/backups/`date --iso`.$i.tar.xz -g /srv/minecraft/backups/`date --iso`.snar /srv/minecraft/server/
|
|
rm /srv/minecraft/backups/`date --iso --date='14 days ago'`* || echo "no old backups to delete!"
|