diff --git a/crontabs.spec b/crontabs.spec index 1fff8af..5acbbe4 100644 --- a/crontabs.spec +++ b/crontabs.spec @@ -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 +- noreplace crontab file; use tmppath + +* Wed Jan 31 2001 Bill Nottingham +- don't process ,v files (#15968) + * Mon Aug 7 2000 Bill Nottingham - put name of script in output of stuff run by run-parts (#12411) diff --git a/run-parts b/run-parts index fa387a7..4118e80 100755 --- a/run-parts +++ b/run-parts @@ -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" \