auto-import changelog data from crontabs-1.9-2.src.rpm

Tue Feb 27 2001 Preston Brown <pbrown@redhat.com>
- noreplace crontab file; use tmppath
Wed Jan 31 2001 Bill Nottingham <notting@redhat.com>
- don't process ,v files (#15968)
This commit is contained in:
cvsdist 2004-09-09 03:58:33 +00:00
parent b3bd41b768
commit 914af2b444
2 changed files with 12 additions and 5 deletions

View File

@ -1,14 +1,14 @@
Summary: Root crontab files used to schedule the execution of programs.
Name: crontabs
Version: 1.8
Release: 1
Copyright: public domain
Version: 1.9
Release: 2
License: public domain
Group: System Environment/Base
Source0: crontab
Source1: run-parts
Requires: tmpwatch
BuildArchitectures: noarch
BuildRoot: /var/tmp/%{name}-root
BuildRoot: %{_tmppath}/%{name}-root
%description
The crontabs package contains root crontab files. Crontab is the
@ -33,7 +33,7 @@ rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%config /etc/crontab
%config(noreplace) /etc/crontab
/usr/bin/run-parts
%dir /etc/cron.hourly
%dir /etc/cron.daily
@ -41,6 +41,12 @@ rm -rf $RPM_BUILD_ROOT
%dir /etc/cron.monthly
%changelog
* Tue Feb 27 2001 Preston Brown <pbrown@redhat.com>
- noreplace crontab file; use tmppath
* Wed Jan 31 2001 Bill Nottingham <notting@redhat.com>
- don't process ,v files (#15968)
* Mon Aug 7 2000 Bill Nottingham <notting@redhat.com>
- put name of script in output of stuff run by run-parts (#12411)

View File

@ -23,6 +23,7 @@ for i in $1/*[^~,] ; do
[ "${i%.rpmorig}" != "${i}" ] && continue
[ "${i%.rpmnew}" != "${i}" ] && continue
[ "${i%.swp}" != "${i}" ] && continue
[ "${i%,v}" != "${i}" ] && continue
if [ -x $i ]; then
$i 2>&1 | awk -v "progname=$i" \