From ae9dff54eb3e47da00d5da5cf92772256a02d4e7 Mon Sep 17 00:00:00 2001 From: Mustafa Baser Date: Tue, 12 Jul 2022 19:23:44 +0300 Subject: [PATCH] fix: remove cache refresh files on uninstall --- gluu_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gluu_install.py b/gluu_install.py index 9b02873c6..3c904c247 100644 --- a/gluu_install.py +++ b/gluu_install.py @@ -227,7 +227,7 @@ def check_installation(): print("Stopping", service) os.system('systemctl stop ' + service) os.system('systemctl stop oxd-server') - remove_list = ['/etc/certs', '/etc/gluu', '/opt/gluu', '/opt/amazon-corretto*', '/opt/jre', '/opt/jetty*', '/opt/jython*', '/opt/opendj', '/opt/node*', '/opt/oxd-server', '/opt/shibboleth-idp'] + remove_list = ['/etc/certs', '/etc/gluu', '/opt/gluu', '/opt/amazon-corretto*', '/opt/jre', '/opt/jetty*', '/opt/jython*', '/opt/opendj', '/opt/node*', '/opt/oxd-server', '/opt/shibboleth-idp', '/var/gluu/identity/cr-snapshots/*'] if not argsp.keep_downloads: remove_list.append('/opt/dist')