forked from ungleich-public/ccollect
added exclude
This commit is contained in:
parent
e87a7a5db1
commit
500bfc55e4
1 changed files with 41 additions and 6 deletions
47
tools/create_source.sh
Normal file → Executable file
47
tools/create_source.sh
Normal file → Executable file
|
@ -4,19 +4,54 @@
|
||||||
# Written for Netstream (www.netstream.ch)
|
# Written for Netstream (www.netstream.ch)
|
||||||
# Creates a source, including exclude
|
# Creates a source, including exclude
|
||||||
|
|
||||||
if [ $# -ne 1 ]; then
|
# standard values
|
||||||
echo $(basename $0): name
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
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
|
||||||
|
|
||||||
|
# functions first
|
||||||
|
_echo()
|
||||||
|
{
|
||||||
|
echo -n "$(basename $0)> $@"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
_exit_err()
|
||||||
|
{
|
||||||
|
_echo "$@"
|
||||||
|
rm -f "$TMP"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# argv
|
||||||
|
if [ $# -ne 1 ]; then
|
||||||
|
_echo "$(basename $0): <name of the server>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
name="$1"
|
name="$1"
|
||||||
fullname="${CSOURCES}/${name}"
|
fullname="${CSOURCES}/${name}"
|
||||||
|
|
||||||
|
# Tests
|
||||||
if [ -e "${fullname}" ]; then
|
if [ -e "${fullname}" ]; then
|
||||||
echo "${fullname} already exists. Aborting."
|
_echo "${fullname} already exists. Aborting."
|
||||||
exit 2
|
exit 2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
_echo "Trying to reach ${name} ..."
|
||||||
|
ping -c1 "${name}" || _exit_err "Cannot reach ${name}. Aborting."
|
||||||
|
|
||||||
|
# Create
|
||||||
|
_echo "Creating ${fullname} ..."
|
||||||
|
mkdir -p "${fullname}" || exit 3
|
||||||
|
|
||||||
|
echo "${name}:/" > "${fullname}/source"
|
||||||
|
cat << eof > "${fullname}/exclude"
|
||||||
|
/dev/*
|
||||||
|
/proc/*
|
||||||
|
/tmp/*
|
||||||
|
eof
|
||||||
|
|
||||||
|
# finish
|
||||||
|
_echo "Added some default values, please verify ${fullname}."
|
||||||
|
_echo "Finished."
|
||||||
|
|
Loading…
Reference in a new issue