https://github.com/col-panic/nextcloud-setting
A Java commandline tool to get/set https://nextcloud.com configuration values via REST
https://github.com/col-panic/nextcloud-setting
nextcloud nextcloud-installation
Last synced: 2 months ago
JSON representation
A Java commandline tool to get/set https://nextcloud.com configuration values via REST
- Host: GitHub
- URL: https://github.com/col-panic/nextcloud-setting
- Owner: col-panic
- Created: 2020-01-15T13:48:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-17T08:53:02.000Z (over 5 years ago)
- Last Synced: 2025-01-15T11:11:19.330Z (4 months ago)
- Topics: nextcloud, nextcloud-installation
- Language: Java
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nextcloud-setting
A Java commandline tool to get/set https://nextcloud.com/ setting values via REST
Uses https://github.com/col-panic/nextcloud-java-api,
an adapted version of https://github.com/a-schild/nextcloud-java-api.## Building
1. Import as Eclipse project
2. Select `src/nextcloud_setting/Main.java` and `Export` / `Runnable Jar File`## Usage
```
$> java -jar NextcloudSetting.jar
The following options are required: [-u], [-l], [-p]Usage: [options]
Options:
* -l
username
* -p
password
-s
values to set as key=value; multiple occurences allowed
Default: []
-t
Trust all HTTPS certificates
Default: false
* -u
Nextcloud service url, e.g. https://nextcloud.instance.com:8443/cloud
-v
Verbose output
Default: false
```## Examples
```
java -jar NextcloudSetting.jar -t -u https://localhost/cloud -v -l NextcloudAdmin -p password -s theming/name=bla
```## Changes
* adf