MKP 2.4.1, removed token parameter, switch to app password parameter only

This commit is contained in:
mellis
2024-01-12 14:12:05 +01:00
parent 714990bffb
commit 05415a8d1d
4 changed files with 25 additions and 30 deletions

View File

@@ -2,8 +2,7 @@ def agent_nextcloud_arguments(params, hostname, ipaddress):
return [
"--hostname", params["hostname"],
"--username", params["username"],
"--password", params["password"],
"--token", passwordstore_get_cmdline("%s", params["token"]),
"--password", passwordstore_get_cmdline("%s", params["password"]),
"--port", params["port"],
"--folder", params["folder"],
"--no-https", params["no_https"],