ccollect/tools/ccollect_add_source.sh

107 lines
2.8 KiB
Bash
Raw Normal View History

2007-08-16 15:03:48 +00:00
#!/bin/sh
# Nico Schottelius
# 2007-08-16
# Written for Netstream (www.netstream.ch)
# Creates a source from standard values specified in
# /etc/ccollect/defaults/sources
2007-08-17 08:48:04 +00:00
# Copying: GPLv3
2007-08-16 15:03:48 +00:00
# standard values
CCOLLECT_CONF="${CCOLLECT_CONF:-/etc/ccollect}"
CSOURCES="${CCOLLECT_CONF}/sources"
CDEFAULTS="${CCOLLECT_CONF}/defaults"
SCONFIG="${CDEFAULTS}/sources"
# standard options: variable2filename
exclude="exclude"
summary="summary"
intervals="intervals"
pre_exec="pre_exec"
post_exec="post_exec"
rsync_options="rsync_options"
verbose="verbose"
very_verbose="very_verbose"
2007-08-16 15:03:48 +00:00
# options that we simply copy over
standard_opts="exclude summary intervals pre_exec post_exec rsync_options verbose very_verbose"
# options not in standard ccollect, used only for source generation
2007-08-16 15:03:48 +00:00
src_prefix="${SCONFIG}/source_prefix"
src_postfix="${SCONFIG}/source_postfix"
destination_base="${SCONFIG}/destination_base"
self="$(basename $0)"
2007-08-16 15:03:48 +00:00
# functions first
_echo()
{
echo "${self}> $@"
}
_exit_err()
{
_echo "$@"
rm -f "$TMP"
exit 1
}
# argv
if [ $# -lt 1 ]; then
_exit_err "<hostnames to create sources for>"
fi
2007-08-16 16:49:09 +00:00
_echo "Reading defaults from ${SCONFIG} ..."
2007-08-16 15:03:48 +00:00
2007-08-16 16:49:09 +00:00
while [ $# -gt 0 ]; do
source="$1"; shift
2007-08-16 15:03:48 +00:00
# Create
_echo "Creating ${source} ..."
fullname="${CSOURCES}/${source}"
2007-08-16 15:03:48 +00:00
# create source
if [ -e "${fullname}" ]; then
_echo "${fullname} already exists. Skipping."
continue
fi
mkdir -p "${fullname}" || _exit_err Cannot create \"${fullname}\".
# copy standard files
for file in $standard_opts; do
eval rfile=\"\$$file\"
eval filename=${SCONFIG}/${rfile}
if [ -e "${filename}" ]; then
2007-08-16 16:49:09 +00:00
_echo Copying \"$rfile\" to ${fullname} ...
cp -r "${filename}" "${fullname}/${rfile}"
fi
done
# create source entry
if [ -f "${src_prefix}" ]; then
2007-08-16 16:49:09 +00:00
source_source="$(cat "${src_prefix}")" || _exit_err "${src_prefix}: Reading failed."
fi
source_source="${source_source}${source}"
if [ -f "${src_postfix}" ]; then
2007-08-16 16:49:09 +00:00
source_source="${source_source}$(cat "${src_postfix}")" || _exit_err "${src_postfix}: Reading failed."
fi
2007-08-16 16:49:09 +00:00
_echo "Adding \"${source_source}\" as source for ${source}"
echo "${source_source}" > "${fullname}/source"
# create destination directory
2007-08-17 13:45:21 +00:00
absbase=$(cd "${destination_base}" 2>/dev/null && pwd -P) || \
2007-08-17 13:53:23 +00:00
_exit_err "${destination_base} must exist before creating sources."
2007-08-17 13:45:21 +00:00
dest="${absbase}/${source}"
_echo "Creating ${dest} ..."
2007-08-16 16:49:09 +00:00
mkdir -p "${dest}" || _exit_err "${dest}: Cannot create."
2007-08-16 16:49:09 +00:00
# link destination directory
dest_abs=$(cd "${dest}" && pwd -P) || _exit_err "${dest}: Changing to newly create dirctory failed."
ln -s "${dest_abs}" "${fullname}/destination" || \
_exit_err "${fullname}/destination: Failed to link \"${dest_abs}\""
2007-08-16 15:03:48 +00:00
2007-08-16 16:49:09 +00:00
done
2007-08-16 15:03:48 +00:00
exit 0