Created
March 8, 2013 16:27
-
-
Save dcolish/5117697 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import yum | |
_yum = yum.YumBase() | |
all_repos = _yum.repos.findRepos('*') | |
repos = {} | |
for _repo in all_repos: | |
repos[_repo.name] = dict(_repo.cfg.items(_repo._section)) | |
print repos |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment