agent thingy added

This commit is contained in:
Ralf Mellis 2023-08-20 11:02:50 +02:00
parent 53f70cdac6
commit 75a87d5d34
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
def agent_mailcow_arguments(params, hostname, ipaddress):
return [
"--hostname", params["hostname"],
"--apikey", params["apikey"],
"--port", params["port"],
"--no-https", params["no_https"],
"--no-cert-check", params["no_cert_check"],
ipaddress,
]
special_agent_info['mailcow'] = agent_mailcow_arguments