Minimize required image packages

This commit is contained in:
Anders Ingemann 2013-09-22 15:40:51 +02:00
parent 53991bdad7
commit 5dcec10d65

View file

@ -17,11 +17,8 @@ class ImagePackages(Task):
def run(self, info): def run(self, info):
# Add some basic packages we are going to need # Add some basic packages we are going to need
include = set(['udev', # We could bootstrap without locales, but things just suck without them, error messages etc.
'openssh-server', include = set(['locales'])
# We could bootstrap without locales, but things just suck without them, error messages etc.
'locales',
])
exclude = set() exclude = set()
info.img_packages = include, exclude info.img_packages = include, exclude