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:
parent
b3bd41b768
commit
914af2b444
@ -1,14 +1,14 @@
|
|||||||
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.8
|
Version: 1.9
|
||||||
Release: 1
|
Release: 2
|
||||||
Copyright: public domain
|
License: public domain
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Source0: crontab
|
Source0: crontab
|
||||||
Source1: run-parts
|
Source1: run-parts
|
||||||
Requires: tmpwatch
|
Requires: tmpwatch
|
||||||
BuildArchitectures: noarch
|
BuildArchitectures: noarch
|
||||||
BuildRoot: /var/tmp/%{name}-root
|
BuildRoot: %{_tmppath}/%{name}-root
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The crontabs package contains root crontab files. Crontab is the
|
The crontabs package contains root crontab files. Crontab is the
|
||||||
@ -33,7 +33,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%config /etc/crontab
|
%config(noreplace) /etc/crontab
|
||||||
/usr/bin/run-parts
|
/usr/bin/run-parts
|
||||||
%dir /etc/cron.hourly
|
%dir /etc/cron.hourly
|
||||||
%dir /etc/cron.daily
|
%dir /etc/cron.daily
|
||||||
@ -41,6 +41,12 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%dir /etc/cron.monthly
|
%dir /etc/cron.monthly
|
||||||
|
|
||||||
%changelog
|
%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>
|
* Mon Aug 7 2000 Bill Nottingham <notting@redhat.com>
|
||||||
- put name of script in output of stuff run by run-parts (#12411)
|
- put name of script in output of stuff run by run-parts (#12411)
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ for i in $1/*[^~,] ; do
|
|||||||
[ "${i%.rpmorig}" != "${i}" ] && continue
|
[ "${i%.rpmorig}" != "${i}" ] && continue
|
||||||
[ "${i%.rpmnew}" != "${i}" ] && continue
|
[ "${i%.rpmnew}" != "${i}" ] && continue
|
||||||
[ "${i%.swp}" != "${i}" ] && continue
|
[ "${i%.swp}" != "${i}" ] && continue
|
||||||
|
[ "${i%,v}" != "${i}" ] && continue
|
||||||
|
|
||||||
if [ -x $i ]; then
|
if [ -x $i ]; then
|
||||||
$i 2>&1 | awk -v "progname=$i" \
|
$i 2>&1 | awk -v "progname=$i" \
|
||||||
|
Loading…
Reference in New Issue
Block a user