Fix up some references due to moving the yum init into it's own function.
This commit is contained in:
parent
e9e0a1880c
commit
7326b388c3
@ -136,7 +136,7 @@ class Pungi(pypungi.PungiBase):
|
|||||||
# Create a yum object to use
|
# Create a yum object to use
|
||||||
self.repos = []
|
self.repos = []
|
||||||
self.mirrorlists = []
|
self.mirrorlists = []
|
||||||
self.ayum = PungiYum(config)
|
self.ayum = PungiYum(self.config)
|
||||||
self.ayum.doLoggingSetup(6, 6)
|
self.ayum.doLoggingSetup(6, 6)
|
||||||
yumconf = yum.config.YumConf()
|
yumconf = yum.config.YumConf()
|
||||||
yumconf.debuglevel = 6
|
yumconf.debuglevel = 6
|
||||||
@ -170,11 +170,11 @@ class Pungi(pypungi.PungiBase):
|
|||||||
|
|
||||||
# deal with our repos
|
# deal with our repos
|
||||||
try:
|
try:
|
||||||
ksparser.handler.repo.methodToRepo()
|
self.ksparser.handler.repo.methodToRepo()
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
for repo in ksparser.handler.repo.repoList:
|
for repo in self.ksparser.handler.repo.repoList:
|
||||||
self.logger.info('Adding repo %s' % repo.name)
|
self.logger.info('Adding repo %s' % repo.name)
|
||||||
thisrepo = yum.yumRepo.YumRepository(repo.name)
|
thisrepo = yum.yumRepo.YumRepository(repo.name)
|
||||||
thisrepo.name = repo.name
|
thisrepo.name = repo.name
|
||||||
|
Loading…
Reference in New Issue
Block a user