diff --git a/ucs-4.0-0/base/univention-system-setup/umc/python/setup/util.py b/ucs-4.0-0/base/univention-system-setup/umc/python/setup/util.py index 42f5376..d6a7272 100644 --- a/ucs-4.0-0/base/univention-system-setup/umc/python/setup/util.py +++ b/ucs-4.0-0/base/univention-system-setup/umc/python/setup/util.py @@ -668,7 +668,7 @@ def get_apps(no_cache=False): except (urllib2.HTTPError, urllib2.URLError) as e: # should not happen as we only access cached, local data raise UMC_CommandError(_('Could not query App Center: %s') % e) - _apps = [iapp.to_dict(package_manager) for iapp in applications if iapp.get('withoutrepository')] + _apps = [iapp.to_dict(package_manager, hosts=[ucr.get('hostname')]) for iapp in applications if iapp.get('withoutrepository')] return _apps def is_proxy(proxy):