Advertisement
darksim905

Backup Script Critique

Feb 12th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. cd ~/backups/
  2. find ~/backups/* -mtime +5 -exec rm {} \;
  3. timestamp=`date +%m-%d-%y`
  4. sed -i 's/#RemoveMe//' /var/www/wiki/LocalSettings.php
  5. mysqldump -h localhost -u root -phs33tQLca wiki --default-character-set=utf8 > mw-MySQL-$timestamp-Backup.sql
  6. sed -i 's/$wgReadOnly/#RemoveMe $wgReadOnly/' /var/www/wiki/LocalSettings.php
  7. tar zcvhf mw-www-$timestamp-Backup.tgz /var/www/wiki
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement