Guest User

Untitled

a guest
Jan 21st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. DATE=`date +%Y-%m-%d`
  4. FOLDER="World1"
  5. BACKUP="/opt/backups/world1_$DATE.7z"
  6.  
  7. cd /opt/bukkit/
  8. rdiff-backup World1 /opt/backups/World1
  9.  
  10. rdiff-backup --force --remove-older-than 3D /opt/backups/World1 &
  11.  
  12. cd /opt/backups/
  13.  
  14. if [ -f "$BACKUP" ]
  15. then
  16. /opt/pigmap/pigmap/pigmap -B 6 -T 1 -i /opt/backups/World1 -o /opt/pigmap/output -g /opt/pigmap/images -h 3 &
  17. else
  18. 7za a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on -xr\!rdiff-backup-data $BACKUP $FOLDER &
  19. fi
Add Comment
Please, Sign In to add comment