ccollect/ccollect.sh

199 lines
3.5 KiB
Bash
Raw Normal View History

2005-11-17 11:33:49 +00:00
#!/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
#
2005-12-06 14:55:07 +00:00
# where to find our configuration and temporary file
#
CCOLLECT_CONF=${CCOLLECT_CONF:-/etc/ccollect}
CSOURCES=$CCOLLECT_CONF/sources
CDEFAULTS=$CCOLLECT_CONF/defaults
2005-12-06 14:55:07 +00:00
TMP=$(mktemp /tmp/$(basename $0).XXXXXX)
2005-12-06 14:55:07 +00:00
#
# catch signals
#
trap "rm -f \"$TMP\"" 1 2 15
2005-11-17 11:33:49 +00:00
#
# errors!
#
errecho()
{
echo "Error: $@" >&2
}
#
2005-12-06 12:45:37 +00:00
# Tell how to use us
#
2005-12-06 12:45:37 +00:00
usage()
{
2005-12-06 16:08:38 +00:00
echo "$(basename $0): [args] <intervall name> <sources to backup>"
2005-12-06 12:45:37 +00:00
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"
2005-12-06 14:35:29 +00:00
echo " -a, --all: Backup all sources specified in $CSOURCES"
2005-12-06 12:45:37 +00:00
echo ""
echo " Retrieve latest ccollect at http://linux.schottelius.org/ccollect/."
2005-12-06 12:45:37 +00:00
echo ""
exit 0
}
2005-12-06 12:45:37 +00:00
#
# Filter arguments
#
i=1
no_shares=0
while [ $i -le $# ]; do
eval arg=\$$i
if [ "$NO_MORE_ARGS" = 1 ]; then
2005-12-06 12:45:37 +00:00
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
2005-12-06 12:45:37 +00:00
i=$((i+1))
done
2005-12-06 14:35:29 +00:00
#
# Look, if we should take ALL sources
#
if [ "$ALL" = 1 ]; then
# reset everything specified before
no_shares=0
2005-12-06 14:55:07 +00:00
#
# get entries from sources
#
cwd=$(pwd)
cd $CSOURCES;
ls > "$TMP"
while read tmp; do
eval share_${no_shares}=\"$tmp\"
2005-12-06 14:35:29 +00:00
no_shares=$((no_shares+1))
2005-12-06 14:55:07 +00:00
done < "$TMP"
2005-12-06 14:35:29 +00:00
fi
#
# Need at least ONE source to backup
#
if [ "$no_shares" -lt 1 ]; then
usage
fi
#
# Let's do the backup
#
i=0
while [ "$i" -lt "$no_shares" ]; do
2005-11-17 11:33:49 +00:00
#
# Standard locations
#
eval name=\$share_${i}
backup="$CSOURCES/$name"
c_source="$backup/source"
c_dest="$backup/destination"
c_exclude="$backup/exclude"
2005-12-06 16:08:38 +00:00
#
# standard rsync options
#
VERBOSE=""
EXCLUDE=""
i=$((i+1))
echo "Beginning to backup \"$name\" ..."
#
# Standard configuration checks
#
if [ ! -d "$backup" ]; then
errecho "\"$name\" is not a cconfig-directory. Skipping."
continue
fi
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
if [ -f "$c_exclude" ]; then
errecho "Destination $c_dest does not link to a directory. Skipping."
continue
2005-12-06 16:08:38 +00:00
while read tmp; do
EXCLUDE="$EXCLUDE --exclude \"$tmp\""
done < "$c_exclude"
fi
2005-12-06 16:08:38 +00:00
#
# clone the old directory with hardlinks
#
#
# the rsync part
#
echo rsync --delete $VERBOSE $EXCLUDE
done
2005-12-06 14:55:07 +00:00
2005-12-06 16:08:38 +00:00
#
# Be a good parent and wait for our children, if they are running wild parallel
#
if [ "$PARALLEL" = 1 ]; then
wait
fi
2005-12-06 14:55:07 +00:00
rm -f "$TMP"