Skip to content
Snippets Groups Projects
Commit 3b50818b authored by Martin Bergemann's avatar Martin Bergemann :speech_balloon:
Browse files

Merge branch 'bug_fix' into 'master'

Bug fix

See merge request !40
parents fed3dbea c1064ca8
No related branches found
No related tags found
1 merge request!40Bug fix
Pipeline #20407 passed
__version__ = "2205.1.14"
__version__ = "2205.1.15"
AVAILABLE_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10"]
AVAILABLE_CONDA_ARCHS = [
"Linux-x86_64",
......
......@@ -483,9 +483,10 @@ class DeployFactory:
self.create_eval_config()
with self.inventory_file.open("w") as f_obj:
f_obj.write(inventory)
inventory_str = inventory
for passwd in (self.email_password, self.master_pass):
if passwd:
inventory = inventory.replace(passwd, "*" * len(passwd))
inventory_str = inventory_str.replace(passwd, "*" * len(passwd))
RichConsole.print(inventory, style="bold", markup=True)
logger.info("Playing the playbooks with ansible")
RichConsole.print(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment