14 lines
556 B
Plaintext
14 lines
556 B
Plaintext
def agent_nextcloud_arguments(params, hostname, ipaddress):
|
|
return [
|
|
"--hostname", params["hostname"],
|
|
"--username", params["username"],
|
|
"--password", passwordstore_get_cmdline("%s", params["password"]),
|
|
"--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
|