From 7f990425c06248c62984393c3523e74db33ddbad Mon Sep 17 00:00:00 2001 From: Kload Date: Tue, 26 Feb 2013 19:00:15 +0100 Subject: [PATCH] redo conf every time --- yunohost_app.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/yunohost_app.py b/yunohost_app.py index 5371c688..509417b6 100644 --- a/yunohost_app.py +++ b/yunohost_app.py @@ -180,8 +180,9 @@ def app_install(app, domain, path='/', label=None, public=False, protected=True) domain_list(filter="virtualdomain="+ domain) except YunoHostError: domain_add([domain]) - _apache_config(domain) - _lemon_config(domain) + + _apache_config(domain) + _lemon_config(domain) if 'script_path' in manifest['yunohost']: _exec_app_script(step='install', path=app_tmp_folder +'/'+ manifest['yunohost']['script_path'], var_dict=script_var_dict, app_type=manifest['type'])