Compare commits
No commits in common. "master" and "2.7" have entirely different histories.
58 changed files with 135 additions and 137 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -8,6 +8,7 @@ doc/man/*.html
|
||||||
doc/man/*.htm
|
doc/man/*.htm
|
||||||
doc/man/*.texi
|
doc/man/*.texi
|
||||||
doc/man/*.man
|
doc/man/*.man
|
||||||
|
test/*
|
||||||
.*.swp
|
.*.swp
|
||||||
doc/man/*.[0-9]
|
doc/man/*.[0-9]
|
||||||
doc/*.xml
|
doc/*.xml
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
stages:
|
|
||||||
- test
|
|
||||||
|
|
||||||
unit_tests:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- make test
|
|
||||||
|
|
||||||
shellcheck:
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- make shellcheck
|
|
58
Makefile
58
Makefile
|
@ -29,7 +29,7 @@ ASCIIDOC=asciidoc
|
||||||
DOCBOOKTOTEXI=docbook2x-texi
|
DOCBOOKTOTEXI=docbook2x-texi
|
||||||
DOCBOOKTOMAN=docbook2x-man
|
DOCBOOKTOMAN=docbook2x-man
|
||||||
XSLTPROC=xsltproc
|
XSLTPROC=xsltproc
|
||||||
XSL=/usr/local/share/xsl/docbook/html/docbook.xsl
|
XSL=/usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl
|
||||||
A2X=a2x
|
A2X=a2x
|
||||||
|
|
||||||
prefix=/usr/packages/ccollect-git
|
prefix=/usr/packages/ccollect-git
|
||||||
|
@ -41,7 +41,11 @@ manlink=/usr/local/man/man1
|
||||||
|
|
||||||
path_dir=/usr/local/bin
|
path_dir=/usr/local/bin
|
||||||
path_destination=${path_dir}/${CCOLLECT_DEST}
|
path_destination=${path_dir}/${CCOLLECT_DEST}
|
||||||
docs_archive_name=docs.tar
|
|
||||||
|
# where to publish
|
||||||
|
host=localhost
|
||||||
|
dir=/home/users/nico/privat/rechner/netz/seiten/www.nico.schottelius.org/src/software/ccollect
|
||||||
|
docdir=${dir}/documentation
|
||||||
|
|
||||||
#
|
#
|
||||||
# Asciidoc will be used to generate other formats later
|
# Asciidoc will be used to generate other formats later
|
||||||
|
@ -75,8 +79,6 @@ DOCBDOCS = ${DOCS:.text=.docbook}
|
||||||
|
|
||||||
DOC_ALL = ${HTMLDOCS} ${DBHTMLDOCS} ${TEXIDOCS} ${MANPDOCS} ${PDFDOCS}
|
DOC_ALL = ${HTMLDOCS} ${DBHTMLDOCS} ${TEXIDOCS} ${MANPDOCS} ${PDFDOCS}
|
||||||
|
|
||||||
TEST_LOG_FILE = /tmp/ccollect/ccollect.log
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# End user targets
|
# End user targets
|
||||||
#
|
#
|
||||||
|
@ -87,8 +89,6 @@ all:
|
||||||
@echo "info: only generate Texinfo"
|
@echo "info: only generate Texinfo"
|
||||||
@echo "man: only generate manpage{s}"
|
@echo "man: only generate manpage{s}"
|
||||||
@echo "install: install ccollect to ${prefix}"
|
@echo "install: install ccollect to ${prefix}"
|
||||||
@echo "shellcheck: shellcheck ccollect script"
|
|
||||||
@echo "test: run unit tests"
|
|
||||||
|
|
||||||
html: ${HTMLDOCS}
|
html: ${HTMLDOCS}
|
||||||
htm: ${DBHTMLDOCS}
|
htm: ${DBHTMLDOCS}
|
||||||
|
@ -177,9 +177,9 @@ pub:
|
||||||
git push
|
git push
|
||||||
|
|
||||||
publish-doc: documentation
|
publish-doc: documentation
|
||||||
|
@echo "Transferring files to ${host}"
|
||||||
@chmod a+r ${DOCS} ${DOC_ALL}
|
@chmod a+r ${DOCS} ${DOC_ALL}
|
||||||
@tar cf ${docs_archive_name} ${DOCS} ${DOC_ALL}
|
@tar c ${DOCS} ${DOC_ALL} | ssh ${host} "cd ${dir}; tar xv"
|
||||||
@echo "Documentation files are in ${docs_archive_name}"
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Distribution
|
# Distribution
|
||||||
|
@ -202,49 +202,9 @@ dist: distclean documentation
|
||||||
shellcheck: ./ccollect
|
shellcheck: ./ccollect
|
||||||
shellcheck -s sh -f gcc -x ./ccollect
|
shellcheck -s sh -f gcc -x ./ccollect
|
||||||
|
|
||||||
test-nico: $(CCOLLECT_SOURCE) /tmp/ccollect
|
test: $(CCOLLECT_SOURCE) /tmp/ccollect
|
||||||
cd ./conf/sources/; for s in *; do CCOLLECT_CONF=../ ../../ccollect daily "$$s"; done
|
cd ./conf/sources/; for s in *; do CCOLLECT_CONF=../ ../../ccollect daily "$$s"; done
|
||||||
touch /tmp/ccollect/$$(ls /tmp/ccollect | head -n1).ccollect-marker
|
touch /tmp/ccollect/$$(ls /tmp/ccollect | head -n1).ccollect-marker
|
||||||
CCOLLECT_CONF=./conf ./ccollect -a daily
|
CCOLLECT_CONF=./conf ./ccollect -a daily
|
||||||
touch /tmp/ccollect/$$(ls /tmp/ccollect | head -n1).ccollect-marker
|
touch /tmp/ccollect/$$(ls /tmp/ccollect | head -n1).ccollect-marker
|
||||||
CCOLLECT_CONF=./conf ./ccollect -a -p daily
|
CCOLLECT_CONF=./conf ./ccollect -a -p daily
|
||||||
|
|
||||||
test-dir-source:
|
|
||||||
mkdir -p /tmp/ccollect/source
|
|
||||||
cp -R -f ./* /tmp/ccollect/source
|
|
||||||
|
|
||||||
test-dir-destination:
|
|
||||||
mkdir -p /tmp/ccollect/backup
|
|
||||||
|
|
||||||
test-dir-destination-chint:
|
|
||||||
mkdir -p /tmp/ccollect/backup-chint
|
|
||||||
|
|
||||||
test-fixed-intervals: $(CCOLLECT_SOURCE) test-dir-source test-dir-destination test-dir-destination-chint
|
|
||||||
for s in ./test/conf/sources/*; do \
|
|
||||||
CCOLLECT_CONF=./test/conf ./ccollect -l ${TEST_LOG_FILE} daily "$$(basename "$$s")"; \
|
|
||||||
test "$$(ls -1 /tmp/ccollect/backup | wc -l)" -gt "0" || { cat ${TEST_LOG_FILE}; exit 1; }; \
|
|
||||||
done
|
|
||||||
CCOLLECT_CONF=./test/conf ./ccollect -l ${TEST_LOG_FILE} -a -v daily
|
|
||||||
test "$$(ls -1 /tmp/ccollect/backup | wc -l)" -gt "0" || { cat ${TEST_LOG_FILE}; exit 1; }
|
|
||||||
CCOLLECT_CONF=./test/conf ./ccollect -l ${TEST_LOG_FILE} -a -p daily
|
|
||||||
test "$$(ls -1 /tmp/ccollect/backup | wc -l)" -gt "0" || { cat ${TEST_LOG_FILE}; exit 1; }
|
|
||||||
@printf "\nFixed intervals test ended successfully\n"
|
|
||||||
|
|
||||||
test-interval-changing: $(CCOLLECT_SOURCE) test-dir-source test-dir-destination-chint
|
|
||||||
rm -rf /tmp/ccollect/backup-chint/*
|
|
||||||
test "$$(ls -1 /tmp/ccollect/backup-chint | wc -l)" -eq "0" || { cat ${TEST_LOG_FILE}; exit 1; }
|
|
||||||
printf "3" > ./test/conf/sources/local-with-interval/intervals/daily
|
|
||||||
for x in 1 2 3 4 5; do CCOLLECT_CONF=./test/conf ./ccollect -l ${TEST_LOG_FILE} daily local-with-interval; done
|
|
||||||
test "$$(ls -1 /tmp/ccollect/backup-chint | wc -l)" -eq "3" || { cat ${TEST_LOG_FILE}; exit 1; }
|
|
||||||
printf "5" > ./test/conf/sources/local-with-interval/intervals/daily
|
|
||||||
for x in 1 2 3 4 5 6 7; do CCOLLECT_CONF=./test/conf ./ccollect -l ${TEST_LOG_FILE} daily local-with-interval; done
|
|
||||||
test "$$(ls -1 /tmp/ccollect/backup-chint | wc -l)" -eq "5" || { cat ${TEST_LOG_FILE}; exit 1; }
|
|
||||||
printf "4" > ./test/conf/sources/local-with-interval/intervals/daily
|
|
||||||
for x in 1 2 3 4 5 6; do CCOLLECT_CONF=./test/conf ./ccollect -l ${TEST_LOG_FILE} daily local-with-interval; done
|
|
||||||
test "$$(ls -1 /tmp/ccollect/backup-chint | wc -l)" -eq "4" || { cat ${TEST_LOG_FILE}; exit 1; }
|
|
||||||
printf "3" > ./test/conf/sources/local-with-interval/intervals/daily
|
|
||||||
@printf "\nInterval changing test ended successfully\n"
|
|
||||||
|
|
||||||
test: test-fixed-intervals test-interval-changing
|
|
||||||
test -f "${TEST_LOG_FILE}"
|
|
||||||
@printf "\nTests ended successfully\n"
|
|
||||||
|
|
38
ccollect
38
ccollect
|
@ -45,8 +45,8 @@ TMP="$(mktemp "/tmp/${__myname}.XXXXXX")"
|
||||||
export TMP
|
export TMP
|
||||||
CONTROL_PIPE="/tmp/${__myname}-control-pipe"
|
CONTROL_PIPE="/tmp/${__myname}-control-pipe"
|
||||||
|
|
||||||
VERSION="2.10"
|
VERSION="2.7"
|
||||||
RELEASE="2020-08-26"
|
RELEASE="2019-11-14"
|
||||||
HALF_VERSION="ccollect ${VERSION}"
|
HALF_VERSION="ccollect ${VERSION}"
|
||||||
FULL_VERSION="ccollect ${VERSION} (${RELEASE})"
|
FULL_VERSION="ccollect ${VERSION} (${RELEASE})"
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ lock_flock()
|
||||||
# $1 = source to backup
|
# $1 = source to backup
|
||||||
# shellcheck disable=SC2059
|
# shellcheck disable=SC2059
|
||||||
lockfile="${LOCKDIR}/$(printf "${LOCKFILE_PATTERN}" "$1")"
|
lockfile="${LOCKDIR}/$(printf "${LOCKFILE_PATTERN}" "$1")"
|
||||||
eval "exec ${LOCKFD}> '${lockfile}'"
|
eval "exec ${LOCKFD}> ${lockfile}"
|
||||||
|
|
||||||
flock -n ${LOCKFD} && return 0 || return 1
|
flock -n ${LOCKFD} && return 0 || return 1
|
||||||
}
|
}
|
||||||
|
@ -469,7 +469,7 @@ fi
|
||||||
if [ "${PARALLEL}" ]; then
|
if [ "${PARALLEL}" ]; then
|
||||||
mkfifo "${CONTROL_PIPE}"
|
mkfifo "${CONTROL_PIPE}"
|
||||||
# fd 5 is tied to control pipe
|
# fd 5 is tied to control pipe
|
||||||
eval "exec 5<>'${CONTROL_PIPE}'"
|
eval "exec 5<>${CONTROL_PIPE}"
|
||||||
TRAPFUNC="${TRAPFUNC}; rm -f \"${CONTROL_PIPE}\""
|
TRAPFUNC="${TRAPFUNC}; rm -f \"${CONTROL_PIPE}\""
|
||||||
# shellcheck disable=SC2064
|
# shellcheck disable=SC2064
|
||||||
trap "${TRAPFUNC}" 0 1 2 15
|
trap "${TRAPFUNC}" 0 1 2 15
|
||||||
|
@ -767,27 +767,20 @@ while [ "${source_no}" -lt "${no_sources}" ]; do
|
||||||
_techo "Using ${oldest_bak} for destination dir ${destination_dir}"
|
_techo "Using ${oldest_bak} for destination dir ${destination_dir}"
|
||||||
if mv "${oldest_bak}" "${destination_dir}"; then
|
if mv "${oldest_bak}" "${destination_dir}"; then
|
||||||
# Touch dest dir so it is not sorted wrong in listings below.
|
# Touch dest dir so it is not sorted wrong in listings below.
|
||||||
ls_rm_exclude=$(basename "${destination_dir}")
|
touch "${destination_dir}"
|
||||||
|
|
||||||
# We have something to remove only if count > interval.
|
# We have something to remove only if count > interval.
|
||||||
remove="$((count - c_interval))"
|
remove="$((count - c_interval))"
|
||||||
else
|
else
|
||||||
_techo_err "Renaming oldest backup ${oldest_bak} to ${destination_dir} failed, removing it."
|
_techo_err "Renaming oldest backup ${oldest_bak} to ${destination_dir} failed, removing it."
|
||||||
remove="$((count - c_interval + 1))"
|
remove="$((count - c_interval + 1))"
|
||||||
ls_rm_exclude=""
|
|
||||||
fi
|
fi
|
||||||
if [ "${remove}" -gt 0 ]; then
|
if [ "${remove}" -gt 0 ]; then
|
||||||
_techo "Removing ${remove} backup(s)..."
|
_techo "Removing ${remove} backup(s)..."
|
||||||
|
|
||||||
if [ -z "${ls_rm_exclude}" ]; then
|
# shellcheck disable=SC2010
|
||||||
# shellcheck disable=SC2010
|
ls -${TSORT}1r | grep "^${INTERVAL}\\." | head -n "${remove}" > "${TMP}" || \
|
||||||
ls -${TSORT}1r | grep "^${INTERVAL}\\." | head -n "${remove}" > "${TMP}" || \
|
_exit_err "Listing old backups failed"
|
||||||
_exit_err "Listing old backups failed"
|
|
||||||
else
|
|
||||||
# shellcheck disable=SC2010
|
|
||||||
ls -${TSORT}1r | grep -v "${ls_rm_exclude}" | grep "^${INTERVAL}\\." | head -n "${remove}" > "${TMP}" || \
|
|
||||||
_exit_err "Listing old backups failed"
|
|
||||||
fi
|
|
||||||
|
|
||||||
delete_from_file "${TMP}" &
|
delete_from_file "${TMP}" &
|
||||||
fi
|
fi
|
||||||
|
@ -824,11 +817,6 @@ while [ "${source_no}" -lt "${no_sources}" ]; do
|
||||||
rsync "$@" "${source}" "${destination_dir}"; ret=$?
|
rsync "$@" "${source}" "${destination_dir}"; ret=$?
|
||||||
_techo "Finished backup (rsync return code: $ret)."
|
_techo "Finished backup (rsync return code: $ret)."
|
||||||
|
|
||||||
#
|
|
||||||
# export rsync return code, might be useful in post_exec
|
|
||||||
#
|
|
||||||
export rsync_return_code=$ret
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Set modification time (mtime) to current time, if sorting by mtime is enabled
|
# Set modification time (mtime) to current time, if sorting by mtime is enabled
|
||||||
#
|
#
|
||||||
|
@ -861,16 +849,6 @@ while [ "${source_no}" -lt "${no_sources}" ]; do
|
||||||
_techo "Warning: rsync failed with return code $ret."
|
_techo "Warning: rsync failed with return code $ret."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#
|
|
||||||
# Create symlink to newest backup
|
|
||||||
#
|
|
||||||
# shellcheck disable=SC2010
|
|
||||||
latest_dir="$(ls -${TSORT}p1 "${ddir}" | grep '/$' | head -n 1)" || \
|
|
||||||
_exit_err "Failed to list content of ${ddir}."
|
|
||||||
|
|
||||||
ln -snf "${ddir}${latest_dir}" "${ddir}current" || \
|
|
||||||
_exit_err "Failed to create 'current' symlink."
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# post_exec
|
# post_exec
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
ccollect - Installing, Configuring and Using
|
ccollect - Installing, Configuring and Using
|
||||||
============================================
|
============================================
|
||||||
Nico Schottelius <nico-ccollect__@__schottelius.org>
|
Nico Schottelius <nico-ccollect__@__schottelius.org>
|
||||||
2.10, for ccollect 2.10, Initial Version from 2006-01-13
|
2.7, for ccollect 2.7, Initial Version from 2006-01-13
|
||||||
:Author Initials: NS
|
:Author Initials: NS
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
* Add 'current' symlink to backup destinations (Steffen Zieger)
|
|
|
@ -1 +0,0 @@
|
||||||
* Fix excluding destination dir from removal
|
|
|
@ -1 +0,0 @@
|
||||||
* Make rsync return code available in post_exec (Steffen Zieger)
|
|
|
@ -1 +0,0 @@
|
||||||
5
|
|
|
@ -1 +0,0 @@
|
||||||
4
|
|
|
@ -1 +0,0 @@
|
||||||
4
|
|
|
@ -1 +0,0 @@
|
||||||
2
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
echo 'General post_exec executed.'
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
echo 'General pre__exec executed.'
|
|
|
@ -1 +0,0 @@
|
||||||
.git
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/backup
|
|
|
@ -1 +0,0 @@
|
||||||
.git
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/source
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/backup
|
|
|
@ -1 +0,0 @@
|
||||||
.git
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/source
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/backup-chint
|
|
|
@ -1 +0,0 @@
|
||||||
.git
|
|
|
@ -1 +0,0 @@
|
||||||
3
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/source
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/backup
|
|
|
@ -1 +0,0 @@
|
||||||
.git
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/source
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/backup
|
|
|
@ -1 +0,0 @@
|
||||||
.git
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/source
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/backup
|
|
|
@ -1 +0,0 @@
|
||||||
.git
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/source
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/backup
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/cat
|
|
||||||
|
|
||||||
######################################################################
|
|
||||||
Source post_exec executed.
|
|
||||||
######################################################################
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/cat
|
|
||||||
|
|
||||||
######################################################################
|
|
||||||
Source pre_exec executed.
|
|
||||||
######################################################################
|
|
|
@ -1 +0,0 @@
|
||||||
/tmp/ccollect/source
|
|
18
test/exec.sh
Executable file
18
test/exec.sh
Executable file
|
@ -0,0 +1,18 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
host="home.schottelius.org"
|
||||||
|
host=""
|
||||||
|
set -x
|
||||||
|
pcmd()
|
||||||
|
{
|
||||||
|
echo "$#", "$@"
|
||||||
|
if [ "$host" ]; then
|
||||||
|
ssh "$host" "$@"
|
||||||
|
else
|
||||||
|
$@
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
#pcmd ls /
|
||||||
|
#pcmd cd /; ls "/is not there"
|
||||||
|
pcmd cd / && ls
|
1
test/local.sh
Executable file
1
test/local.sh
Executable file
|
@ -0,0 +1 @@
|
||||||
|
CCOLLECT_CONF=./conf ./ccollect.sh daily -v local1
|
1
test/remote.sh
Executable file
1
test/remote.sh
Executable file
|
@ -0,0 +1 @@
|
||||||
|
CCOLLECT_CONF=./conf ./ccollect.sh daily -v remote1
|
23
test/return-value.sh
Executable file
23
test/return-value.sh
Executable file
|
@ -0,0 +1,23 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
ls /surely-not-existent$$ 2>/dev/null
|
||||||
|
|
||||||
|
if [ "$?" -ne 0 ]; then
|
||||||
|
echo "$?"
|
||||||
|
fi
|
||||||
|
|
||||||
|
ls /surely-not-existent$$ 2>/dev/null
|
||||||
|
|
||||||
|
ret=$?
|
||||||
|
|
||||||
|
if [ "$ret" -ne 0 ]; then
|
||||||
|
echo "$ret"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# if is true, ls is fales
|
||||||
|
if [ "foo" = "foo" ]; then
|
||||||
|
ls /surely-not-existent$$ 2>/dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
|
# but that's still the return of ls and not of fi
|
||||||
|
echo $?
|
29
test/test-ccollect-tools.sh
Normal file
29
test/test-ccollect-tools.sh
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# 2009 Nico Schottelius (nico-ccollect at schottelius.org)
|
||||||
|
#
|
||||||
|
# This file is part of ccollect.
|
||||||
|
#
|
||||||
|
# ccollect is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# ccollect is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with ccollect. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Test the ccollect tools suite
|
||||||
|
#
|
||||||
|
|
||||||
|
set -x
|
||||||
|
|
||||||
|
tmp="$(mktemp /tmp/ccollect-tools.XXXXXXXXXXX)"
|
||||||
|
|
||||||
|
|
||||||
|
rm -rf "${tmp}"
|
44
test/test-ccollect1.sh
Executable file
44
test/test-ccollect1.sh
Executable file
|
@ -0,0 +1,44 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Nico Schottelius <nico-linux //@// schottelius.org>
|
||||||
|
# Date: 27-Jan-2007
|
||||||
|
# Last Modified: -
|
||||||
|
# Description:
|
||||||
|
#
|
||||||
|
|
||||||
|
ccollect=../ccollect.sh
|
||||||
|
testdir="$(dirname $0)/test-backups"
|
||||||
|
confdir="$(dirname $0)/test-config"
|
||||||
|
source="$(hostname)"
|
||||||
|
source_source="/tmp"
|
||||||
|
interval="taeglich"
|
||||||
|
|
||||||
|
|
||||||
|
# backup destination
|
||||||
|
mkdir -p "$testdir"
|
||||||
|
source_dest="$(cd "$testdir"; pwd -P)"
|
||||||
|
|
||||||
|
# configuration
|
||||||
|
mkdir -p "${confdir}/sources/${source}"
|
||||||
|
ln -s "$source_dest" "${confdir}/sources/${source}/destination"
|
||||||
|
echo "$source_source" > "${confdir}/sources/${source}/source"
|
||||||
|
touch "${confdir}/sources/${source}/summary"
|
||||||
|
touch "${confdir}/sources/${source}/verbose"
|
||||||
|
|
||||||
|
mkdir -p "${confdir}/defaults/intervals/"
|
||||||
|
echo 3 > "${confdir}/defaults/intervals/$interval"
|
||||||
|
|
||||||
|
# create backups
|
||||||
|
|
||||||
|
CCOLLECT_CONF="$confdir" "$ccollect" "$interval" -p -a
|
||||||
|
touch "${source_source}/$(date +%s)-$$.1982"
|
||||||
|
|
||||||
|
CCOLLECT_CONF="$confdir" "$ccollect" "$interval" -p -a
|
||||||
|
touch "${source_source}/$(date +%s)-$$.42"
|
||||||
|
|
||||||
|
CCOLLECT_CONF="$confdir" "$ccollect" "$interval" -p -a
|
||||||
|
|
||||||
|
du -sh "$testdir"
|
||||||
|
du -shl "$testdir"
|
||||||
|
|
||||||
|
echo "Delete $testdir and $confdir after test"
|
Loading…
Reference in a new issue