Initial Commit v2.2.0

This commit is contained in:
2023-03-11 14:29:54 +01:00
parent bc5a12babd
commit b0d808ae60
14 changed files with 1038 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
def agent_nextcloud_arguments(params, hostname, ipaddress):
return [
"--hostname", params["hostname"],
"--username", params["username"],
"--password", params["password"],
"--token", params["token"],
"--port", params["port"],
"--folder", params["folder"],
"--no-https", params["no_https"],
"--no-cert-check", params["no_cert_check"],
ipaddress,
]
special_agent_info['nextcloud'] = agent_nextcloud_arguments