Skip to content

Commit 8486d65

Browse files
author
Till Brehm
committed
Merge branch 'master' into 'master'
Add CLI tool See merge request ispconfig/ispconfig3!770
2 parents 285cbd6 + f13cdfc commit 8486d65

File tree

3 files changed

+463
-0
lines changed

3 files changed

+463
-0
lines changed

remoting_client/cli/README.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# ISPConfig CLI
2+
Command line for ISPConfig remote user REST API using either smart functions or raw methods.
3+
4+
## Getting Started
5+
This tool can be used and packaged stand alone, without ISPConfig itself. It is designed to have as few dependencies as possible.
6+
7+
The script has two main modes: smart functions and raw methods.
8+
9+
Raw methods simply wrap your JSON to the arbitrary method name you've given. As such, it works with any method, and makes properly formatted requests with curl. It is a handy tool for custom requests, testing, advanced scripting and integration work.
10+
11+
Functions in turn are combinations of methods and checks that act more like an intelligent tool and does not require the user to understand JSON. This is handy for manual interaction or for scripting.
12+
13+
> **Note:**
14+
Consider using -q for scripting, this will suppress everything but results and errors on the output.
15+
16+
### Example function usage:
17+
ispconfig-cli -f "dns_a_add example.com. www 192.168.0.2"
18+
19+
DNS zone example.com. has id 1.
20+
DNS A www exists with id 228, updating...
21+
Updated records: 1
22+
23+
### Example method usage:
24+
ispconfig-cli -m login -j credentials.json
25+
26+
{"code":"ok","message":"","response":"dc39619b0ac9694cb85e93d8b3ac8258"}
27+
28+
> **Note:**
29+
The whole function has to be quoted as one due to how bash manages the command line arguments.
30+
31+
### Config file
32+
The script uses an optional config file, allowing commands as short as above.
33+
34+
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for
35+
notes on how to deploy the project on a live system.
36+
37+
## Dependencies
38+
- ```jq``` for working with JSON
39+
- ```curl``` for talking to the endpoint
40+
41+
On debian-based distributions such as ubuntu, you can ensure these are installed by running
42+
sudo apt install jq curl
43+
44+
## Installing
45+
1. Place this script in your path, for example in your ```~/bin``` folder on many distros.
46+
2. Make it executable ```chmod 755 ispconfig-cli```
47+
3. Optionally create a config file in ```/etc/ispconfig-cli.conf``` or ```~/.ispconfig-cli```
48+
49+
## Details on usage
50+
Run the script without arguments for the full list of functionality and config file creation instructions.

0 commit comments

Comments
 (0)