diff --git a/Changelog b/Changelog index 5cbd5326..007c3ae6 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,6 @@ * Mon Dec 10 Jesse Keating - Use a repoview cache. +- Change path to isomd5sum * Sat Dec 08 Jesse Keating - Use a createrepo cache. diff --git a/pypungi/pungi.py b/pypungi/pungi.py index 4d1cd2b9..19112fac 100755 --- a/pypungi/pungi.py +++ b/pypungi/pungi.py @@ -483,7 +483,7 @@ cost=500 # implant md5 for mediacheck on all but source arches if not self.config.get('default', 'arch') == 'source': - pypungi._doRunCommand(['/usr/lib/anaconda-runtime/implantisomd5', isofile], self.logger) + pypungi._doRunCommand(['/usr/bin/implantisomd5', isofile], self.logger) # shove the sha1sum into a file sha1file = open(os.path.join(self.isodir, 'SHA1SUM'), 'a') @@ -534,7 +534,7 @@ cost=500 # implant md5 for mediacheck on all but source arches if not self.config.get('default', 'arch') == 'source': - pypungi._doRunCommand(['/usr/lib/anaconda-runtime/implantisomd5', isofile], self.logger) + pypungi._doRunCommand(['/usr/bin/implantisomd5', isofile], self.logger) # shove the sha1sum into a file sha1file = open(os.path.join(self.isodir, 'SHA1SUM'), 'a')