19 lines
521 B
Diff
19 lines
521 B
Diff
--- extras/syslogtocern
|
|
+++ extras/syslogtocern
|
|
@@ -31,8 +31,8 @@
|
|
exit 1
|
|
fi
|
|
|
|
-tmp1=/tmp/stc1.$$
|
|
-rm -f $tmp1
|
|
+tmp1=`mktemp -t stc1.XXXXXX` || { echo "$0: Cannot create temporary file" >&2; exit 1; }
|
|
+trap " [ -f \"$tmp1\" ] && /bin/rm -f -- \"$tmp1\"" 0 1 2 3 13 15
|
|
|
|
# Gather up all the thttpd entries.
|
|
egrep ' thttpd\[' $* > $tmp1
|
|
@@ -65,4 +65,3 @@
|
|
sed -e "s,\([A-Z][a-z][a-z] [0-9 ][0-9] [0-9][0-9]:[0-9][0-9]:[0-9][0-9]\) [^ ]* thttpd\[[0-9]*\]: \(.*\),[\1 ${year}] \2," > error_log
|
|
|
|
# Done.
|
|
-rm -f $tmp1
|