From 8482e48f9f27990a0eac76f07b24e4a89e7cc2d9 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Tue, 7 Mar 2017 02:07:09 +0100 Subject: [PATCH] [fix] launch ssowatconf at the end of a broken install to avoid sso bad state --- src/yunohost/app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index 17223228d..9d1d38f1e 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -573,6 +573,8 @@ def app_install(auth, app, label=None, args=None, no_remove_on_failure=False): shutil.rmtree(app_setting_path) shutil.rmtree(extracted_app_folder) + app_ssowatconf(auth) + if install_retcode == -1: raise MoulinetteError(errno.EINTR, m18n.g('operation_interrupted'))