Nextcloud-CheckMK/local/share/check_mk/checks/agent_nextcloud

14 lines
566 B
Plaintext
Raw Normal View History

2023-03-11 14:29:54 +01:00
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