Do not prevent apache-restart when using AppCenter (Bug #29809) Index: umc/python/appcenter/__init__.py =================================================================== --- umc/python/appcenter/__init__.py (Revision 37887) +++ umc/python/appcenter/__init__.py (Arbeitskopie) @@ -181,7 +181,7 @@ if can_continue: def _thread(module, application, function): with module.package_manager.locked(reset_status=True, set_finished=True): - with module.package_manager.no_umc_restart(): + with module.package_manager.no_umc_restart(exclude_apache=True): if function in ('install', 'update'): # dont have to add component: already added during dry_run return application.install(module.package_manager, module.component_manager, add_component=False)