Add some more comments

This commit is contained in:
jkeating@localhost.localdomain 2006-10-10 23:59:50 -04:00 committed by Jesse Keating
parent 151917685c
commit 3c7cdc5133

View File

@ -17,7 +17,8 @@ import sys
import yum import yum
def create_yumobj(yumconf): def create_yumobj(yumconf):
# Create a yum object to act upon # Create a yum object to act upon. This may move to a higher
# level file and get passed to this module.
myYum = yum.yumBase() myYum = yum.yumBase()
myYum.doConfigSetup(fn=yumconf) myYum.doConfigSetup(fn=yumconf)
myYum.doRepoSetup() myYum.doRepoSetup()
@ -25,6 +26,9 @@ def create_yumobj(yumconf):
return myYum return myYum
def download_packages(yumobj, pkglist): def download_packages(yumobj, pkglist):
# for now a simple function to download packages.
# Needed are ways to define where to put the packages,
# cleaning up multiple returns from searching
pkgobjs = [] pkgobjs = []
for pkg in pkglist: for pkg in pkglist:
pkgobjs.extend(yumobj.pkgSack.searchNevra(name=pkg)) pkgobjs.extend(yumobj.pkgSack.searchNevra(name=pkg))