Export logfile name, output errors on stderr

This commit is contained in:
Nico Schottelius 2007-08-24 15:44:00 +02:00
parent c7ae7fc322
commit 327e901527
1 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@ CDATE="date +%Y%m%d-%H%M"
we="$(basename $0)"
pid=$$
logfile="${logdir}/$(${CDATE}).${pid}"
export ccollect_logfile="${logdir}/$(${CDATE}).${pid}"
# use syslog normally
# Also use echo, can be redirected with > /dev/null if someone cares
@ -30,17 +30,17 @@ _echo()
# exit on error
_exit_err()
{
_echo "$@"
_echo "$@" >&2
rm -f "${TMP}"
exit 1
}
# put everything into that specified file
_echo "Starting with arguments: $@"
touch "${logfile}" || _exit_err "Failed to create ${logfile}"
touch "${ccollect_logfile}" || _exit_err "Failed to create ${ccollect_logfile}"
# First line in the logfile is always the commandline
echo ccollect.sh "$@" > "${logfile}" 2>&1
ccollect.sh "$@" >> "${logfile}" 2>&1
echo ccollect.sh "$@" > "${ccollect_logfile}" 2>&1
ccollect.sh "$@" >> "${ccollect_logfile}" 2>&1
_echo "Finished."