Dont require package sysv-rc to be installed

This commit is contained in:
Anders Ingemann 2013-09-22 15:43:50 +02:00
parent 885ace7b48
commit 4b2711893f

View file

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