Many formal cleanups
This commit is contained in:
parent
624e5b419b
commit
799c24faf3
1 changed files with 31 additions and 33 deletions
62
ccollect.sh
62
ccollect.sh
|
@ -8,22 +8,22 @@
|
||||||
# where to find our configuration and temporary file
|
# where to find our configuration and temporary file
|
||||||
#
|
#
|
||||||
CCOLLECT_CONF=${CCOLLECT_CONF:-/etc/ccollect}
|
CCOLLECT_CONF=${CCOLLECT_CONF:-/etc/ccollect}
|
||||||
CSOURCES=$CCOLLECT_CONF/sources
|
CSOURCES=${CCOLLECT_CONF}/sources
|
||||||
CDEFAULTS=$CCOLLECT_CONF/defaults
|
CDEFAULTS=${CCOLLECT_CONF}/defaults
|
||||||
CPREEXEC="$CDEFAULTS/pre_exec"
|
CPREEXEC="${CDEFAULTS}/pre_exec"
|
||||||
CPOSTEXEC="$CDEFAULTS/post_exec"
|
CPOSTEXEC="${CDEFAULTS}/post_exec"
|
||||||
|
|
||||||
TMP=$(mktemp /tmp/$(basename $0).XXXXXX)
|
TMP=$(mktemp "/tmp/$(basename $0).XXXXXX")
|
||||||
VERSION=0.6
|
VERSION=0.6
|
||||||
RELEASE="2007-XX-XX"
|
RELEASE="2007-08-16/17"
|
||||||
HALF_VERSION="ccollect $VERSION"
|
HALF_VERSION="ccollect ${VERSION}"
|
||||||
FULL_VERSION="ccollect $VERSION ($RELEASE)"
|
FULL_VERSION="ccollect ${VERSION} (${RELEASE})"
|
||||||
|
|
||||||
#
|
#
|
||||||
# CDATE: how we use it for naming of the archives
|
# CDATE: how we use it for naming of the archives
|
||||||
# DDATE: how the user should see it in our output (DISPLAY)
|
# DDATE: how the user should see it in our output (DISPLAY)
|
||||||
#
|
#
|
||||||
CDATE="date +%Y-%m-%d-%H%M"
|
CDATE="date +%Y%m%d-%H%M"
|
||||||
DDATE="date +%Y-%m-%d-%H:%M:%S"
|
DDATE="date +%Y-%m-%d-%H:%M:%S"
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -34,7 +34,7 @@ PARALLEL=""
|
||||||
#
|
#
|
||||||
# catch signals
|
# catch signals
|
||||||
#
|
#
|
||||||
trap "rm -f \"$TMP\"" 1 2 15
|
trap "rm -f \"${TMP}\"" 1 2 15
|
||||||
|
|
||||||
#
|
#
|
||||||
# Functions
|
# Functions
|
||||||
|
@ -43,20 +43,20 @@ trap "rm -f \"$TMP\"" 1 2 15
|
||||||
# time displaying echo
|
# time displaying echo
|
||||||
_techo()
|
_techo()
|
||||||
{
|
{
|
||||||
echo "$(${DDATE}): $@"
|
echo "$(${DDATE}): " "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
# exit on error
|
# exit on error
|
||||||
_exit_err()
|
_exit_err()
|
||||||
{
|
{
|
||||||
_techo "$@"
|
_techo "$@"
|
||||||
rm -f "$TMP"
|
rm -f "${TMP}"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
add_name()
|
add_name()
|
||||||
{
|
{
|
||||||
sed "s:^:\[$name\] :"
|
sed "s:^:\[${name}\] :"
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -91,7 +91,7 @@ fi
|
||||||
# check for configuraton directory
|
# check for configuraton directory
|
||||||
#
|
#
|
||||||
[ -d "${CCOLLECT_CONF}" ] || _exit_err "No configuration found in " \
|
[ -d "${CCOLLECT_CONF}" ] || _exit_err "No configuration found in " \
|
||||||
"\"$CCOLLECT_CONF\" (is \$CCOLLECT_CONF properly set?)"
|
"\"${CCOLLECT_CONF}\" (is \$CCOLLECT_CONF properly set?)"
|
||||||
|
|
||||||
#
|
#
|
||||||
# Filter arguments
|
# Filter arguments
|
||||||
|
@ -106,14 +106,14 @@ no_sources=0
|
||||||
while [ "$#" -ge 1 ]; do
|
while [ "$#" -ge 1 ]; do
|
||||||
eval arg=\"\$1\"; shift
|
eval arg=\"\$1\"; shift
|
||||||
|
|
||||||
if [ "$NO_MORE_ARGS" = 1 ]; then
|
if [ "${NO_MORE_ARGS}" = 1 ]; then
|
||||||
eval source_${no_sources}=\"$arg\"
|
eval source_${no_sources}=\"${arg}\"
|
||||||
no_sources=$(($no_sources+1))
|
no_sources=$((${no_sources}+1))
|
||||||
|
|
||||||
# make variable available for subscripts
|
# make variable available for subscripts
|
||||||
eval export source_${no_sources}
|
eval export source_${no_sources}
|
||||||
else
|
else
|
||||||
case "$arg" in
|
case "${arg}" in
|
||||||
-a|--all)
|
-a|--all)
|
||||||
ALL=1
|
ALL=1
|
||||||
;;
|
;;
|
||||||
|
@ -145,14 +145,14 @@ export no_sources
|
||||||
#
|
#
|
||||||
# be really, really, really verbose
|
# be really, really, really verbose
|
||||||
#
|
#
|
||||||
if [ "$VERBOSE" = 1 ]; then
|
if [ "${VERBOSE}" = 1 ]; then
|
||||||
set -x
|
set -x
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
# Look, if we should take ALL sources
|
# Look, if we should take ALL sources
|
||||||
#
|
#
|
||||||
if [ "$ALL" = 1 ]; then
|
if [ "${ALL}" = 1 ]; then
|
||||||
# reset everything specified before
|
# reset everything specified before
|
||||||
no_sources=0
|
no_sources=0
|
||||||
|
|
||||||
|
@ -165,8 +165,8 @@ if [ "$ALL" = 1 ]; then
|
||||||
[ "${ret}" -eq 0 ] || _exit_err "Listing of sources failed. Aborting."
|
[ "${ret}" -eq 0 ] || _exit_err "Listing of sources failed. Aborting."
|
||||||
|
|
||||||
while read tmp; do
|
while read tmp; do
|
||||||
eval source_${no_sources}=\"$tmp\"
|
eval source_${no_sources}=\"${tmp}\"
|
||||||
no_sources=$(($no_sources+1))
|
no_sources=$((${no_sources}+1))
|
||||||
done < "${TMP}"
|
done < "${TMP}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -183,9 +183,9 @@ fi
|
||||||
# Look for pre-exec command (general)
|
# Look for pre-exec command (general)
|
||||||
#
|
#
|
||||||
if [ -x "${CPREEXEC}" ]; then
|
if [ -x "${CPREEXEC}" ]; then
|
||||||
echo "Executing ${CPREEXEC} ..."
|
_techo "Executing ${CPREEXEC} ..."
|
||||||
"${CPREEXEC}"; ret=$?
|
"${CPREEXEC}"; ret=$?
|
||||||
echo "Finished ${CPREEXEC}."
|
_techo "Finished ${CPREEXEC}."
|
||||||
|
|
||||||
[ "${ret}" -eq 0 ] || _exit_err "${CPREEXEC} exited with return code ${ret}" \
|
[ "${ret}" -eq 0 ] || _exit_err "${CPREEXEC} exited with return code ${ret}" \
|
||||||
", aborting backup."
|
", aborting backup."
|
||||||
|
@ -203,13 +203,13 @@ D_INTERVAL=$(cat "${D_FILE_INTERVAL}" 2>/dev/null)
|
||||||
# Let's do the backup
|
# Let's do the backup
|
||||||
#
|
#
|
||||||
i=0
|
i=0
|
||||||
while [ "$i" -lt "$no_sources" ]; do
|
while [ "${i}" -lt "${no_sources}" ]; do
|
||||||
|
|
||||||
#
|
#
|
||||||
# Get current source
|
# Get current source
|
||||||
#
|
#
|
||||||
eval name=\"\$source_${i}\"
|
eval name=\"\$source_${i}\"
|
||||||
i=$(($i+1))
|
i=$((${i}+1))
|
||||||
|
|
||||||
export name
|
export name
|
||||||
|
|
||||||
|
@ -266,16 +266,14 @@ while [ "$i" -lt "$no_sources" ]; do
|
||||||
# Standard configuration checks
|
# Standard configuration checks
|
||||||
#
|
#
|
||||||
if [ ! -e "${backup}" ]; then
|
if [ ! -e "${backup}" ]; then
|
||||||
_techo "Source does not exist."
|
_exit_err "Source does not exist."
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
# configuration _must_ be a directory
|
# configuration _must_ be a directory
|
||||||
#
|
#
|
||||||
if [ ! -d "${backup}" ]; then
|
if [ ! -d "${backup}" ]; then
|
||||||
_techo "\"${name}\" is not a cconfig-directory. Skipping."
|
_exit_err "\"${name}\" is not a cconfig-directory. Skipping."
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -340,7 +338,7 @@ while [ "$i" -lt "$no_sources" ]; do
|
||||||
# exclude list
|
# exclude list
|
||||||
#
|
#
|
||||||
if [ -f "${c_exclude}" ]; then
|
if [ -f "${c_exclude}" ]; then
|
||||||
set -- "$@" "--exclude-from=$c_exclude"
|
set -- "$@" "--exclude-from=${c_exclude}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -388,7 +386,7 @@ while [ "$i" -lt "$no_sources" ]; do
|
||||||
echo "${incomplete} is incomplete"
|
echo "${incomplete} is incomplete"
|
||||||
done < "${TMP}"
|
done < "${TMP}"
|
||||||
|
|
||||||
last_dir=$(ls -d "$c_dest/${INTERVAL}."?* 2>/dev/null | sort -n | tail -n 1)
|
last_dir=$(ls -d "${c_dest}/${INTERVAL}."?* 2>/dev/null | sort -n | tail -n 1)
|
||||||
|
|
||||||
#
|
#
|
||||||
# check if maximum number of backups is reached, if so remove
|
# check if maximum number of backups is reached, if so remove
|
||||||
|
|
Loading…
Reference in a new issue