Log in logger's pid.

This commit is contained in:
Marcela Mašláňová 2008-04-04 11:10:43 +00:00
parent 804def8631
commit 1d579de4d6
2 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,7 @@
Summary: Root crontab files used to schedule the execution of programs Summary: Root crontab files used to schedule the execution of programs
Name: crontabs Name: crontabs
Version: 1.10 Version: 1.10
Release: 19%{?dist} Release: 20%{?dist}
License: Public Domain and GPLv2 License: Public Domain and GPLv2
Group: System Environment/Base Group: System Environment/Base
Source0: crontab Source0: crontab
@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT
%config(noreplace) /etc/sysconfig/crontab %config(noreplace) /etc/sysconfig/crontab
%changelog %changelog
* Fri Apr 4 2008 Marcela Maslanova <mmaslano@redhat.com> 1.10-20
- 440410 log pid of process instead of logger's pid
* Mon Oct 22 2007 Marcela Maslanova <mmaslano@redhat.com> 1.10-19 * Mon Oct 22 2007 Marcela Maslanova <mmaslano@redhat.com> 1.10-19
- run-parts log also end of each job (patch from J. Kamens) - run-parts log also end of each job (patch from J. Kamens)
- Resolves: rhbz#303081 - Resolves: rhbz#303081

View File

@ -26,7 +26,7 @@ for i in $1/*[^~,] ; do
[ "${i%,v}" != "${i}" ] && continue [ "${i%,v}" != "${i}" ] && continue
if [ -x $i ]; then if [ -x $i ]; then
logger -i -p cron.notice -t "run-parts($1)" "starting $(basename $i)" logger -p cron.notice -t "run-parts($1)[$$]" "starting $(basename $i)"
$i 2>&1 | awk -v "progname=$i" \ $i 2>&1 | awk -v "progname=$i" \
'progname { 'progname {
print progname ":\n" print progname ":\n"