From 6a26176c236f52cf5ed1aebffa8468a0b1674a44 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 31 Jul 2014 06:02:12 -0500 Subject: [PATCH] make sure that the dvd/cd is using the shortened volumeid --- src/pypungi/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pypungi/__init__.py b/src/pypungi/__init__.py index 32532952..d11893d7 100644 --- a/src/pypungi/__init__.py +++ b/src/pypungi/__init__.py @@ -1632,8 +1632,7 @@ class Pungi(pypungi.PungiBase): # NOTE: if this doesn't match what's in the bootloader config, the # image won't be bootable! extraargs.append('-V') - extraargs.append('%s-%s-%s' % (self.config.get('pungi', 'name'), - self.config.get('pungi', 'version'), self.tree_arch)) + extraargs.append(self._shortenVolID()) extraargs.extend(['-o', isofile])