Re: Treating 'not found' packages as errors
seth vidal <[email protected]>
| Newsgroups | gmane.linux.rpm.yum |
|---|---|
| Message-ID | <1208973422.26936.19.camel@cutter> |
On Wed, 2008-04-23 at 18:11 +0200, Anders Blomdell wrote: > Don't know yet, I have problems with changing the cachedir location, this naive > code extracted and combined from the wiki: > #!/usr/bin/python > > import yum, os, sys > # setup base objects > my = yum.YumBase() > # someplace you can write to as your user > my.conf.basecachedir = '/tmp/whereever' > if not os.path.exists(my.conf.basecachedir): > os.makedirs(my.conf.basecachedir) > my.conf.cache = 0 after you do the above add: my.repos.setCacheDir(my.conf.basecachedir) see if that takes care of it. -sv