search for: rpmutil

Displaying 3 results from an estimated 3 matches for "rpmutil".

Did you mean: rmutil
2004 Aug 05
4
newest up2date rpm
...42, in __retrievePackage File "rpcServer.py", line 304, in doCall File "repoDirector.py", line 31, in getHeader File "rpmSource.py", line 210, in getHeader File "/usr/share/rhn/up2date_client/repoBackends/yumRepo.py", line 100, in getHeader hdr = rpmUtils.readHeaderBlob(hdrBuf) TypeError: readHeaderBlob() takes exactly 2 arguments (1 given) ill post this in bugzilla also
2013 Jul 01
3
Yum errors
Hi, I have a machine that recently had some file system corruption. fsck was able repair the file system but I am getting the following error when I try to do yum update: [Errno 21] Is a directory: '/var/lib/yum/yumdb/e/2f883c08e3b596b66fcc19c6b4d73b11c9aaa43e-e2fsprogs-1.41.12-14.el6_4.2-x86_64/checksum_type' In searching Google, some suggested renaming the yumdb but that just results
2009 Sep 22
1
[PATCH] edit-livecd in python
...or.unmount() + editor.package(output) + except CreatorError, e: + logging.error(u"Error editing Live CD : %s" % e) + return 1 + finally: + editor.cleanup() + + return 0 + + +if __name__ == "__main__": + sys.exit(main()) + + +arch = rpmUtils.arch.getBaseArch() +if arch in ("i386", "x86_64"): + LiveImageCreator = x86LiveImageCreator +elif arch in ("ppc",): + LiveImageCreator = ppcLiveImageCreator +elif arch in ("ppc64",): + LiveImageCreator = ppc64LiveImageCreator +else: + raise Creat...