add missing kpartx package for Host

This commit is contained in:
Olivier Sallou 2013-09-09 20:45:11 +02:00
parent e6ec040b27
commit 929a77b5a3
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@ class HostPackages(Task):
after = [packages.HostPackages]
def run(self, info):
info.host_packages.update(['qemu-utils', 'parted', 'grub2', 'sysv-rc'])
info.host_packages.update(['qemu-utils', 'parted', 'grub2', 'sysv-rc', 'kpartx'])
if info.manifest.volume['filesystem'] == 'xfs':
info.host_packages.add('xfsprogs')

View file

@ -11,7 +11,7 @@ class HostPackages(Task):
after = [packages.HostPackages]
def run(self, info):
info.host_packages.update(['qemu-utils', 'parted', 'grub2', 'sysv-rc'])
info.host_packages.update(['qemu-utils', 'parted', 'grub2', 'sysv-rc', 'kpartx'])
if info.manifest.volume['filesystem'] == 'xfs':
info.host_packages.add('xfsprogs')