tinyproxy/doc/report.sh.tmpl
Robert James Kaes 232aea721c Moved the doc/report.sh script to doc/report.sh.tmpl file. The script
is then updated by the make procedure to reflect the correct location
of the tinyproxy executable.
2003-03-17 04:20:19 +00:00

17 lines
317 B
Bash

#!/bin/sh
TINYPROXY_BIN=@TINYPROXY_LOCATION@/tinyproxy
(echo "date: "
date
echo "uname: "
uname -a
echo "ps: "
ps -auxw | grep '[t]inyproxy' -
echo "ver: "
if [ -x $TINYPROXY_BIN ]; then
$TINYPROXY_BIN -v
else
echo no ver available.
fi;) 2>&1 | mail -s 'tinyproxy install report' rjkaes@users.sourceforge.net