X-Git-Url: https://code.grnet.gr/git/snf-image-creator/blobdiff_plain/39cfd61abeed84a0eb8b9a61373bb67d5c767886..fba0968870e13efbe1926fa43363aa56efd79ee4:/image_creator/os_type/ubuntu.py diff --git a/image_creator/os_type/ubuntu.py b/image_creator/os_type/ubuntu.py index 77d80ff..6a048e5 100644 --- a/image_creator/os_type/ubuntu.py +++ b/image_creator/os_type/ubuntu.py @@ -31,19 +31,19 @@ # interpreted as representing official policies, either expressed # or implied, of GRNET S.A. -from image_creator.os_type.linux import Linux +from image_creator.os_type.linux import Linux, sysprep class Ubuntu(Linux): - def get_metadata(self): - meta = super(Ubuntu, self).get_metadata() + def __init__(self, rootdev, ghandler, output): + super(Ubuntu, self).__init__(rootdev, ghandler, output) + apps = self.g.inspect_list_applications(self.root) for app in apps: if app['app_name'] == 'kubuntu-desktop': - meta['OS'] = 'kubuntu' - meta['DESCRIPTION'] = \ - meta['DESCRIPTION'].replace('Ubuntu', 'Kubuntu') + self.meta['OS'] = 'kubuntu' + descr = self.meta['DESCRIPTION'].replace('Ubuntu', 'Kubuntu') + self.meta['DESCRIPTION'] = descr break - return meta # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :