2007-08-16 20:58:37 +00:00
|
|
|
#!/bin/sh
|
2008-03-09 22:20:49 +00:00
|
|
|
#
|
|
|
|
# 2007-2008 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/>.
|
|
|
|
#
|
|
|
|
# Written for Netstream (www.netstream.ch) on Fr 8. Jun 10:30:24 CEST 2007
|
|
|
|
#
|
2007-08-20 09:58:31 +00:00
|
|
|
# Call the log-wrapper instead of ccollect.sh and it will create nice logs
|
2008-03-17 08:17:53 +00:00
|
|
|
#
|
2007-08-16 20:58:37 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# where to find our configuration and temporary file
|
|
|
|
#
|
|
|
|
CCOLLECT_CONF=${CCOLLECT_CONF:-/etc/ccollect}
|
|
|
|
LOGCONF=$CCOLLECT_CONF/logwrapper
|
|
|
|
|
2007-08-20 09:58:31 +00:00
|
|
|
logdir="${LOGCONF}/destination"
|
|
|
|
CDATE="date +%Y%m%d-%H%M"
|
2007-08-20 15:45:06 +00:00
|
|
|
we="$(basename $0)"
|
2007-08-20 09:58:31 +00:00
|
|
|
pid=$$
|
|
|
|
|
2007-08-24 13:44:00 +00:00
|
|
|
export ccollect_logfile="${logdir}/$(${CDATE}).${pid}"
|
2007-08-20 09:58:31 +00:00
|
|
|
|
|
|
|
# use syslog normally
|
2007-08-20 15:35:37 +00:00
|
|
|
# Also use echo, can be redirected with > /dev/null if someone cares
|
2007-08-20 09:58:31 +00:00
|
|
|
_echo()
|
|
|
|
{
|
2007-08-20 15:45:06 +00:00
|
|
|
string="${we} (${pid}): $@"
|
|
|
|
logger "${string}"
|
|
|
|
echo "${string}"
|
2007-08-20 09:58:31 +00:00
|
|
|
}
|
|
|
|
|
2007-08-16 20:58:37 +00:00
|
|
|
|
2007-08-20 09:58:31 +00:00
|
|
|
# exit on error
|
|
|
|
_exit_err()
|
|
|
|
{
|
2007-08-24 13:44:00 +00:00
|
|
|
_echo "$@" >&2
|
2007-08-20 09:58:31 +00:00
|
|
|
rm -f "${TMP}"
|
|
|
|
exit 1
|
|
|
|
}
|
2007-08-16 20:58:37 +00:00
|
|
|
|
2007-08-20 09:58:31 +00:00
|
|
|
# put everything into that specified file
|
|
|
|
_echo "Starting with arguments: $@"
|
2007-08-24 13:44:00 +00:00
|
|
|
touch "${ccollect_logfile}" || _exit_err "Failed to create ${ccollect_logfile}"
|
2007-08-20 15:45:06 +00:00
|
|
|
|
|
|
|
# First line in the logfile is always the commandline
|
2010-05-27 15:37:20 +00:00
|
|
|
echo ccollect "$@" > "${ccollect_logfile}" 2>&1
|
|
|
|
ccollect "$@" >> "${ccollect_logfile}" 2>&1
|
2007-08-20 15:45:06 +00:00
|
|
|
|
2007-08-20 09:58:31 +00:00
|
|
|
_echo "Finished."
|