7a4e82d87a
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
288 lines
5.8 KiB
Bash
288 lines
5.8 KiB
Bash
#!/bin/sh
|
|
# Nico Schottelius
|
|
# written for SyGroup (www.sygroup.ch)
|
|
# Date: Mon Nov 14 11:45:11 CET 2005
|
|
# Last Modified:
|
|
|
|
|
|
#
|
|
# temporary as long as inofficial
|
|
#
|
|
CCOLLECT_CONF=$HOME/crsnapshot/conf
|
|
|
|
|
|
#
|
|
# where to find our configuration and temporary file
|
|
#
|
|
CCOLLECT_CONF=${CCOLLECT_CONF:-/etc/ccollect}
|
|
CSOURCES=$CCOLLECT_CONF/sources
|
|
CDEFAULTS=$CCOLLECT_CONF/defaults
|
|
TMP=$(mktemp /tmp/$(basename $0).XXXXXX)
|
|
WE=$(basename $0)
|
|
|
|
#
|
|
# catch signals
|
|
#
|
|
trap "rm -f \"$TMP\"" 1 2 15
|
|
|
|
|
|
#
|
|
# errors!
|
|
#
|
|
errecho()
|
|
{
|
|
echo "|E> Error: $@" >&2
|
|
}
|
|
|
|
|
|
#
|
|
# Tell how to use us
|
|
#
|
|
usage()
|
|
{
|
|
echo "$WE: <intervall name> [args] <sources to backup>"
|
|
echo ""
|
|
echo " Nico Schottelius (nico-linux-ccollect schottelius.org) - 2005-12-06"
|
|
echo ""
|
|
echo " Backup data pseudo incremental"
|
|
echo ""
|
|
echo " -h, --help: Show this help screen"
|
|
echo " -p, --parallel: Parellize backup process"
|
|
echo " -a, --all: Backup all sources specified in $CSOURCES"
|
|
echo ""
|
|
echo " Retrieve latest ccollect at http://linux.schottelius.org/ccollect/."
|
|
echo ""
|
|
exit 0
|
|
}
|
|
|
|
#
|
|
# need at least intervall and one source or --all
|
|
#
|
|
if [ $# -lt 2 ]; then
|
|
usage
|
|
fi
|
|
|
|
#
|
|
# Filter arguments
|
|
#
|
|
|
|
INTERVALL=$1; shift
|
|
|
|
i=1
|
|
no_shares=0
|
|
|
|
while [ $i -le $# ]; do
|
|
eval arg=\$$i
|
|
|
|
if [ "$NO_MORE_ARGS" = 1 ]; then
|
|
eval share_${no_shares}=\"$arg\"
|
|
no_shares=$[$no_shares+1]
|
|
else
|
|
case $arg in
|
|
-a|--all)
|
|
ALL=1
|
|
;;
|
|
-p|--parallel)
|
|
PARALLEL=1
|
|
;;
|
|
-h|--help)
|
|
usage
|
|
;;
|
|
--)
|
|
NO_MORE_ARGS=1
|
|
;;
|
|
*)
|
|
eval share_${no_shares}=\"$arg\"
|
|
no_shares=$[$no_shares+1]
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
i=$[$i+1]
|
|
done
|
|
|
|
|
|
#
|
|
# Look, if we should take ALL sources
|
|
#
|
|
if [ "$ALL" = 1 ]; then
|
|
# reset everything specified before
|
|
no_shares=0
|
|
|
|
#
|
|
# get entries from sources
|
|
#
|
|
cwd=$(pwd)
|
|
cd $CSOURCES;
|
|
ls > "$TMP"
|
|
|
|
while read tmp; do
|
|
eval share_${no_shares}=\"$tmp\"
|
|
no_shares=$[$no_shares+1]
|
|
done < "$TMP"
|
|
fi
|
|
|
|
#
|
|
# Need at least ONE source to backup
|
|
#
|
|
if [ "$no_shares" -lt 1 ]; then
|
|
usage
|
|
else
|
|
echo "/o> $WE: Beginning backup using intervall $INTERVALL"
|
|
fi
|
|
|
|
#
|
|
# check default configuration
|
|
#
|
|
|
|
D_FILE_INTERVALL="$CDEFAULTS/intervalls/$INTERVALL"
|
|
D_INTERVALL=$(cat $D_FILE_INTERVALL 2>/dev/null)
|
|
|
|
#
|
|
# Let's do the backup
|
|
#
|
|
i=0
|
|
while [ "$i" -lt "$no_shares" ]; do
|
|
|
|
#
|
|
# Standard locations
|
|
#
|
|
eval name=\$share_${i}
|
|
backup="$CSOURCES/$name"
|
|
c_source="$backup/source"
|
|
c_dest="$backup/destination"
|
|
c_exclude="$backup/exclude"
|
|
c_verbose="$backup/verbose"
|
|
|
|
echo "/=> Beginning to backup \"$name\" ..."
|
|
i=$[$i+1]
|
|
|
|
#
|
|
# Standard configuration checks
|
|
#
|
|
if [ ! -e "$backup" ]; then
|
|
errecho "Source \"$name\" does not exist."
|
|
continue
|
|
fi
|
|
if [ ! -d "$backup" ]; then
|
|
errecho "\"$name\" is not a cconfig-directory. Skipping."
|
|
continue
|
|
fi
|
|
|
|
#
|
|
# intervall definiition: First try source specific, fallback to default
|
|
#
|
|
c_intervall="$(cat "$backup/intervalls/$INTERVALL" 2>/dev/null)"
|
|
|
|
if [ -z "$c_intervall" ]; then
|
|
c_intervall=$D_INTERVALL
|
|
|
|
if [ -z "$c_intervall" ]; then
|
|
errecho "Default and source specific intervall missing. Skipping."
|
|
continue
|
|
fi
|
|
fi
|
|
|
|
#
|
|
# standard rsync options
|
|
#
|
|
VERBOSE=""
|
|
EXCLUDE=""
|
|
|
|
#
|
|
# next configuration checks
|
|
#
|
|
if [ ! -f "$c_source" ]; then
|
|
echo "|-> Source description $c_source is not a file. Skipping."
|
|
continue
|
|
else
|
|
source=$(cat "$c_source")
|
|
if [ $? -ne 0 ]; then
|
|
echo "|-> Skipping: Source $c_source is not readable"
|
|
continue
|
|
fi
|
|
fi
|
|
|
|
if [ ! -d "$c_dest" ]; then
|
|
errecho "Destination $c_dest does not link to a directory. Skipping"
|
|
continue
|
|
fi
|
|
|
|
# exclude
|
|
if [ -f "$c_exclude" ]; then
|
|
EXCLUDE="--exclude-from=$c_exclude"
|
|
fi
|
|
|
|
# verbose
|
|
if [ -f "$c_verbose" ]; then
|
|
VERBOSE="-v"
|
|
fi
|
|
|
|
#
|
|
# check if maximum number of backups is reached, if so remove
|
|
#
|
|
|
|
# the created directories are named $INTERVALL.$DATE
|
|
count=$(ls -d "$c_dest/${INTERVALL}."?* 2>/dev/null | wc -l)
|
|
echo "|-> $count backup(s) already exist, keeping $c_intervall backup(s)."
|
|
|
|
if [ "$count" -ge "$c_intervall" ]; then
|
|
substract=$(echo $c_intervall - 1 | bc)
|
|
remove=$(echo $count - $substract | bc)
|
|
echo "|-> Removing $remove backup(s)..."
|
|
|
|
ls -d "$c_dest/${INTERVALL}."?* | sort -n | head -n $remove > "$TMP"
|
|
while read to_remove; do
|
|
dir="$to_remove"
|
|
echo "|-> Removing $dir ..."
|
|
rm -rf "$dir"
|
|
done < "$TMP"
|
|
fi
|
|
|
|
#
|
|
# clone the old directory with hardlinks
|
|
#
|
|
|
|
destination_date=$(date +%Y-%m-%d-%H:%M)
|
|
destination_dir="$c_dest/${INTERVALL}.${destination_date}.$$"
|
|
|
|
last_dir=$(ls -d "$c_dest/${INTERVALL}."?* 2>/dev/null | sort -n | tail -n 1)
|
|
|
|
# only copy if a directory exists
|
|
if [ "$last_dir" ]; then
|
|
# echo cp -al "$last_dir" "$destination_dir"
|
|
cp $VERBOSE -al "$last_dir" "$destination_dir"
|
|
else
|
|
mkdir "$destination_dir"
|
|
fi
|
|
|
|
if [ $? -ne 0 ]; then
|
|
errecho "Creating/cloning backup directory failed. Skipping backup."
|
|
continue
|
|
fi
|
|
|
|
#
|
|
# the rsync part
|
|
# options stolen shameless from rsnapshot
|
|
#
|
|
|
|
rsync -a $VERBOSE --delete --numeric-ids --relative --delete-excluded \
|
|
"$EXCLUDE" $EXCLUDE "$source" "$destination_dir"
|
|
|
|
if [ $? -ne 0 ]; then
|
|
errecho "rsync failed, backup most likely broken"
|
|
continue
|
|
fi
|
|
|
|
echo "\=> Successfully finished backup of \"$name\"."
|
|
done
|
|
|
|
#
|
|
# Be a good parent and wait for our children, if they are running wild parallel
|
|
#
|
|
if [ "$PARALLEL" = 1 ]; then
|
|
wait
|
|
fi
|
|
|
|
rm -f "$TMP"
|
|
echo "\o> Finished $WE."
|