Archive pour août 2005

Un script simple de sauvegarde sur bande

Mardi 2 août 2005

Ayant passé le serveur du boulot sur linux + samba + plein d’autres services, j’ai eu le besoin d’automatiser un peu la sauvegarde du système.

J’ai trouvé plein de solutions différentes sur le web : cpio, dump, amanda, flexbackup and co, mais aucun suffisamment simple et souple pour la bête sauvegarde d’un serveur sur lequel tout est centralisé.

Retour aux sources : tar, mt et cron étaient déjà des amis de longue date, pourquoi s’en passer ?

Basé sur un petit script trouvé sur le net, voici maintenant /usr/sbin/backup.sh :

#!/bin/sh
# full and incremental backup script
# created 13 July 2005
# Based on a script by Daniel O'Callaghan
# modified by Gerhard Mourani
# adapted to tape backup by François Lacombe

#Change the 5 variables below to fit your computer/backup

DOFB=”6″ # day of the week of full backup
DIRECTORIES=”/bin /boot /etc /home /initrd /lib /root /sbin /usr /var” # directories to backup
BACKUPTAPE=/dev/nst0 # backup device or file
TAR=/bin/tar # name and locaction of tar
MT=/bin/mt
LOG=/var/log/backup # where to save log

#You should not have to change anything below here

#PATH=/usr/local/bin:/usr/bin:/bin
NOW=`date “+%F %H:%M:%S”`
DOW=`date +%u` # Day of the week e.g. 1 for Mon
DOM=`date +%d` # Date of the Month e.g. 27
DM=`date +%d%b` # Date and Month e.g. 27Sep

# Monthly full backup
#if [ $DOM = "01" ]; then
# NEWER=”"
# $TAR $NEWER -cf $BACKUPTAPE $DIRECTORIES
#fi

# Weekly full backup on saturday
if [ $DOW = $DOFB ]; then
echo “Full backup started on $NOW” >>$LOG
# If tape is to be deleted if it has not been changed
# Leave it commented if you dont want to lose backups from the previous week
# Uncomment it if 2 weews of backup should exceed tape capacity
#$MT -f $BACKUPTAPE rewind
LABEL=”–label=Weekly_backup_for_`date +%Y-%m-%d`”
NEWER=”"
$TAR $NEWER -cf $BACKUPTAPE $LABEL $DIRECTORIES 2>>$LOG

# Make incremental backup the other days
else

# Get date of last full backup
DFFB=`expr \( $DOW - $DOFB + 6 \) % 7 + 1` # Number of days from last full backup
LFULL=`date +%F -d +%m-+%d-+%y –date “$DFFB days ago”` # Date of last full backup
LABEL=”–label=Daily_backup_for_`date +%Y-%m-%d`”
NEWER=”–newer-mtime $LFULL”
echo “Incremental backup started on $NOW” >>$LOG
$TAR $NEWER -cf $BACKUPTAPE $LABEL $DIRECTORIES 2>>$LOG
fi

NOW=`date “+%F %H:%M:%S”`
$MT -f $BACKUPTAPE status >>$LOG
echo “Backup finished on $NOW” >>$LOG

Reste l’automatisation. Il suffit de créer /etc/cron.d/backup
# backup
0 2 * * * root /usr/sbin/backup.sh

N’oubliez pas de donner les bonnes permissions aux 2 fichiers, et ça devrait marcher.

Le script a été réalisé et testé sur une mandrake 10.1 avec locales en français (important pour les formats de dates).