2023-03-11 14:29:54 +01:00
|
|
|
def agent_nextcloud_arguments(params, hostname, ipaddress):
|
|
|
|
return [
|
|
|
|
"--hostname", params["hostname"],
|
|
|
|
"--username", params["username"],
|
2024-01-12 14:12:05 +01:00
|
|
|
"--password", passwordstore_get_cmdline("%s", params["password"]),
|
2023-03-11 14:29:54 +01:00
|
|
|
"--port", params["port"],
|
|
|
|
"--folder", params["folder"],
|
|
|
|
"--no-https", params["no_https"],
|
|
|
|
"--no-cert-check", params["no_cert_check"],
|
|
|
|
ipaddress,
|
|
|
|
]
|
|
|
|
|
2023-08-08 09:12:08 +02:00
|
|
|
special_agent_info['nextcloud'] = agent_nextcloud_arguments
|