From b5d94ed587fc2c965efadb9b24415a0913ac314e Mon Sep 17 00:00:00 2001 From: Mustafa Baser Date: Tue, 12 Jul 2022 23:06:36 +0300 Subject: [PATCH] fix: setup removal notice --- setup_app/utils/properties_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_app/utils/properties_utils.py b/setup_app/utils/properties_utils.py index 92eb03827..c9ecfedef 100644 --- a/setup_app/utils/properties_utils.py +++ b/setup_app/utils/properties_utils.py @@ -342,7 +342,7 @@ def getString(value): if not Config.installed_instance: Config.post_messages.append( - "Encrypted properties file saved to {0}.enc with password {1}\nDecrypt the file with the following command if you want to re-use:\nopenssl enc -d -aes-256-cbc -in {2}.enc -out {3}".format( + "Encrypted properties file saved to {0}.enc with password {1}\nDecrypt the file with the following command if you want to re-use:\nopenssl enc -d -aes-256-cbc -in {2}.enc -out {3}\nPlease remove the whole setup directory /install post-installation for a production deployment.".format( prop_fn, Config.oxtrust_admin_password, os.path.basename(prop_fn), os.path.basename(Config.setup_properties_fn))) self.run(['rm', '-f', prop_fn])