Compare commits

...
Sign in to create a new pull request.

26 commits

Author SHA1 Message Date
James Antill
2f259c291e Moved into the yum package. 2012-12-05 15:40:56 -05:00
Marcela Mašláňová
54d0874346 The requirement on vixie-cron is not correct anymore. The dailyjobs will be used as virtual requirement since now. #879550 2012-11-23 11:05:48 +01:00
Dennis Gilmore
30f66f1830 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild 2012-07-22 02:49:08 -05:00
Dennis Gilmore
d6074e82e3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild 2012-01-14 03:31:12 -06:00
Dennis Gilmore
78d3903ddb - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-08 02:21:58 -06:00
Jason Tibbitts
efe3b8c713 Mark /etc/yum/yum-*.yum as config files
Mark /etc/yum/yum-*.yum as config files so updates don't wipe them out.
2011-01-05 12:30:11 -06:00
Fedora Release Engineering
3a1db30cd2 dist-git conversion 2010-07-29 16:26:00 +00:00
Alec Thomas Habig
0414f68fd6 - Changed the shebang to refer to bash rather than sh, as bashisms are used
so bash should be required (bug 550449)
- Test for restorecon and mailx as they're used, so systems without them
    are not forced to install to use this package (removed the
    dependancies, bug 550447)
2010-02-10 21:22:09 +00:00
Bill Nottingham
e003fe1e25 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-25 22:39:36 +00:00
Alec Thomas Habig
fec80d4cb8 - Fixed CLEANDAY default in script
- changed the /etc/yum/ scripts to not be marked as a config file in the
    .spec - we always want them updated, they're code not config. rpmlint
    used to complain about them not being marked as config files, but seems
    to have grown out of this weirdness in the meantime .
2009-10-14 13:35:21 +00:00
Alec Thomas Habig
ec22c07490 - Change cron file to 0yum.cron, so yum updates things before the other
daily jobs such as makewhatis, prelink, updatedb, etc run. That way
    updated files get picked up properly. Cost - those jobs will run later.
    Resolves bug 445894. Changed default random delay to 60 minutes from
    120 to reduce the cost.
- Eliminate the weekly package cleaning script. Replace with logic in the
    daily script to clean the packages and the metadata once per week
    (otherwise corrupted metadata messes things up indefinitely). Resolves
    bug 526452. Removal of seperate weekly script resolves bug 524461.
- Use find to clear stale locks at start of run, so add findutils req.
2009-10-06 22:15:06 +00:00
Alec Thomas Habig
e90020627d deal with stale lockdirs, bug 515814 2009-08-21 19:30:56 +00:00
Alec Thomas Habig
ca4d1b4a37 Add ability to check for stale locks to the cron scripts. 2009-08-11 00:04:53 +00:00
Jesse Keating
fc954e29a4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 2009-07-27 08:57:11 +00:00
Jesse Keating
6f8ac8202e - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild 2009-02-25 18:22:33 +00:00
Alec Thomas Habig
92d46b42d9 - Change writes to YUMTMP to be appends to work around selinux policy
- oddness in bug 431588
- this requires the added policycoreutils dependancy
2008-12-14 23:08:39 +00:00
Alec Thomas Habig
85fe604a63 Add YUM_PARAMETER for user specified parameters to the sysconf file
Wed Mar 5 2008 Alec Habig <ahabig@umn.edu> - 0.8.1-1 Fix bugs 429716 and
    435968
2008-03-13 18:58:29 +00:00
Alec Thomas Habig
929dcf712b Change tmp dir to /var/run (bug 431588) add DAYS_OF_WEEK and CHECK_FIRST
config options (bug 429716) fix CHECK_ONLY thinking updates are present
    on repository problems (bug 431321)
2008-02-21 14:21:26 +00:00
Alec Thomas Habig
23bee07305 Added new logging options. 2008-01-09 17:40:50 +00:00
Alec Thomas Habig
7edf0cda1a Bugfixes. 2007-10-16 15:04:29 +00:00
Alec Thomas Habig
60d9135fe7 Added a lockfile to prevent multiple instances of the cron scripts from
running and hanging, see bug 311661
2007-09-30 15:50:30 +00:00
Alec Thomas Habig
132cf7498d Fix cron.daily bug which was skippin gupdates, integrate checkonly patch
into source tarball.
2007-09-03 14:52:22 +00:00
Alec Thomas Habig
73544eeafb Added Frank Wittig's patch to set check-only via an entry in the new file
/etc/sysconfig/yum-cron
2007-08-28 15:19:53 +00:00
Alec Thomas Habig
4b6eebdd17 GPL -> GPLv2 2007-08-21 19:56:40 +00:00
Alec Thomas Habig
3678cce316 Adding dist tags universally 2007-08-21 19:17:31 +00:00
Alec Thomas Habig
ba1d6c2b31 initial import 2007-08-21 18:44:39 +00:00
4 changed files with 1 additions and 21 deletions

View file

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: yum-cron
# $Id$
NAME := yum-cron
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

1
dead.package Normal file
View file

@ -0,0 +1 @@
Moved into the yum package.

View file