[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [PATCH] Disable devel repos on release (#503798)
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Subject: Re: [PATCH] Disable devel repos on release (#503798)
- Date: Thu, 23 Jul 2009 17:53:33 -0400
> diff --git a/yuminstall.py b/yuminstall.py
> index 035c4b1..3553927 100644
> --- a/yuminstall.py
> +++ b/yuminstall.py
> @@ -533,6 +533,12 @@ class AnacondaYum(YumSorter):
> del(repo)
> raise RepoError, "Repo %s contains -source or -debuginfo, excluding" % name
>
> + # this is a little hard-coded, but it's effective
> + if not BETANAG and (repo.id.find("rawhide") or repo.id.find("development")):
> + name = repo.name
> + del(repo)
> + raise RepoError, "Excluding devel repo %s for non-devel anaconda" % name
> +
> if BETANAG and not repo.enabled:
> name = repo.name
> del(repo)
I've always hated doing this, but okay. I'll look the other way and you
commit it and we'll pretend it never happened.
- Chris
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]