Remove lsof as a required package

This commit is contained in:
Anders Ingemann 2013-07-08 22:40:20 +02:00
parent 8bcc0ca2ad
commit b444b9ebf3

View file

@ -7,10 +7,7 @@ class HostPackages(Task):
phase = phases.preparation
def run(self, info):
packages = set(['debootstrap',
# To make sure a volume is not busy before unmounting we need lsof
'lsof',
])
packages = set(['debootstrap'])
if info.manifest.volume['filesystem'] == 'xfs':
packages.add('xfsprogs')