mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
So much perl in da world (+ remove script)
This commit is contained in:
parent
8144a063b6
commit
4b35febec7
2 changed files with 20 additions and 1 deletions
|
@ -292,6 +292,7 @@ app:
|
|||
arguments:
|
||||
app:
|
||||
help: App(s) to delete
|
||||
ask: "App ID to remove"
|
||||
-i:
|
||||
full: --instance
|
||||
help: App instance number to delete
|
||||
|
|
|
@ -613,8 +613,26 @@ def app_remove(app, instance=[]):
|
|||
is_web = lvl(manifest, 'yunohost', 'webapp')
|
||||
has_db = lvl(manifest, 'yunohost', 'webapp', 'db')
|
||||
|
||||
script_var_dict = {
|
||||
'APP_DIR': apps_path +'/'+ unique_app_id,
|
||||
'APP_ID': unique_app_id
|
||||
}
|
||||
|
||||
if lvl(manifest, 'dependencies'):
|
||||
#_remove_app_dependencies(manifest['dependencies'])
|
||||
pass
|
||||
|
||||
if lvl(manifest, 'yunohost', 'script_path'):
|
||||
_exec_app_script(step='remove', path=app_tmp_folder +'/'+ manifest['yunohost']['script_path'], var_dict=script_var_dict, app_type=manifest['type'])
|
||||
|
||||
if is_web:
|
||||
lemon_conf_lines[('locationRules', app_settings['domain'], '(?#'+ unique_app_id +'Z)^'+ app_settings['path'] )] = None
|
||||
if os.path.exists(lemon_tmp_conf): os.remove(lemon_tmp_conf)
|
||||
|
||||
with open(lemon_tmp_conf,'a') as lemon_conf:
|
||||
hash = "$tmp->{'locationRules'}->{'"+ app_settings['domain'] +"'}"
|
||||
lemon_conf.write("foreach my $key (keys %{ "+ hash +" }) { delete "+ hash +"{$key} if $key =~ /"+ app_settings['uid'] +"/; }" + '\n')
|
||||
|
||||
os.system('/usr/share/lemonldap-ng/bin/lmYnhMoulinette')
|
||||
try:
|
||||
os.remove(a2_settings_path +'/'+ app_settings['domain'] +'.d/'+ unique_app_id +'.app.conf')
|
||||
except OSError:
|
||||
|
|
Loading…
Reference in a new issue