> diff --git a/yuminstall.py b/yuminstall.py > index 890ed83..1a0db11 100644 > --- a/yuminstall.py > +++ b/yuminstall.py > @@ -2016,6 +2016,11 @@ debuglevel=6 > for repo in self.ayum.repos.listEnabled(): > if repo.name == "Installation Repo": > continue > + if repo.name == "Red Hat Enterprise Linux": > + continue > + # ignore addon repos from media > + if repo.anacondaBaseURLs[0].startswith("file://"): > + continue > > line = "repo --name=\"%s\" " % (repo.name or repo.repoid) Looking at yuminstall.py, I see no guarantees that an addon repo's URL starts with "file://". You could, however, set an "addon" attribute on AnacondaYumRepo and check for that. - Chris _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list