knotctl/README.md

119 lines
2.8 KiB
Markdown
Raw Normal View History

2022-10-24 09:10:09 +00:00
# knotctl
2022-10-25 08:44:19 +02:00
This is a commandline tool for knotapi: https://gitlab.nic.cz/knot/knot-dns-rest
2022-10-24 13:28:51 +02:00
2022-10-25 08:44:19 +02:00
## Build and install
To install using pip, run the following command:
```
pip3 install git+https://code.smolnet.org/micke/knotctl
```
To build and install as a deb-package
```
sudo apt install python3-stdeb
2022-10-25 08:44:19 +02:00
git clone https://code.smolnet.org/micke/knotctl
cd knotctl
python3 setup.py --command-packages=stdeb.command bdist_deb
2022-11-10 12:53:44 +00:00
sudo dpkg -i deb_dist/knotctl_*_all.deb
2022-10-25 08:44:19 +02:00
```
2022-10-25 09:10:39 +00:00
A prebuilt deb-package is also available from the release page: https://code.smolnet.org/micke/knotctl/releases/
2022-10-25 08:44:19 +02:00
## Shell completion
For bash: add this to .bashrc
```
source <(knotctl completion)
2022-10-25 08:44:19 +02:00
```
For fish, run:
```
knotctl completion --shell fish > ~/.config/fish/completions/knotctl.fish
2022-10-25 08:44:19 +02:00
```
For tcsh: add this to .cshrc
```
complete "knotctl" 'p@*@`python-argcomplete-tcsh "knotctl"`@' ;
```
For zsh: add this to .zshrc
```
autoload -U bashcompinit
bashcompinit
source <(knotctl completion)
2022-10-25 08:44:19 +02:00
```
2022-10-24 13:28:51 +02:00
## Usage
```
2022-10-24 19:13:24 +02:00
usage: knotctl [-h] [--json | --no-json]
{add,completion,config,delete,list,update} ...
2022-10-24 17:55:33 +02:00
positional arguments:
{add,completion,config,delete,list,update}
2022-10-24 17:55:33 +02:00
options:
-h, --help show this help message and exit
--json, --no-json
2022-10-24 13:28:51 +02:00
```
2022-10-24 17:55:33 +02:00
### ADD
2022-10-24 13:28:51 +02:00
```
2022-11-10 12:50:18 +01:00
usage: knotctl add [-h] -d DATA -n NAME -r RTYPE [-t TTL] -z ZONE
2022-10-24 17:55:33 +02:00
options:
-h, --help show this help message and exit
-d DATA, --data DATA
-n NAME, --name NAME
-r RTYPE, --rtype RTYPE
-t TTL, --ttl TTL
-z ZONE, --zone ZONE
2022-10-24 13:28:51 +02:00
```
### COMPLETION
2022-10-24 19:13:24 +02:00
```
usage: knotctl completion [-h] [-s SHELL]
2022-10-24 19:13:24 +02:00
options:
-h, --help show this help message and exit
-s SHELL, --shell SHELL
```
2022-10-24 17:55:33 +02:00
### CONFIG
2022-10-24 13:28:51 +02:00
```
2022-10-24 17:55:33 +02:00
usage: knotctl config [-h] [-b BASEURL] [-p PASSWORD] [-u USERNAME]
options:
-h, --help show this help message and exit
-b BASEURL, --baseurl BASEURL
-p PASSWORD, --password PASSWORD
-u USERNAME, --username USERNAME
2022-10-24 13:28:51 +02:00
```
2022-10-24 17:55:33 +02:00
### DELETE
2022-10-24 13:28:51 +02:00
```
2022-10-24 17:55:33 +02:00
usage: knotctl delete [-h] [-d DATA] [-n NAME] [-r RTYPE] -z ZONE
options:
-h, --help show this help message and exit
-d DATA, --data DATA
-n NAME, --name NAME
-r RTYPE, --rtype RTYPE
-z ZONE, --zone ZONE
2022-10-24 13:28:51 +02:00
```
2022-10-24 17:55:33 +02:00
### LIST
2022-10-24 13:28:51 +02:00
```
2022-10-24 17:55:33 +02:00
usage: knotctl list [-h] [-d DATA] [-n NAME] [-r RTYPE] [-z ZONE]
options:
-h, --help show this help message and exit
-d DATA, --data DATA
-n NAME, --name NAME
-r RTYPE, --rtype RTYPE
-z ZONE, --zone ZONE
2022-10-24 13:28:51 +02:00
```
2022-10-24 17:55:33 +02:00
### UPDATE
2022-10-24 13:28:51 +02:00
```
2022-10-27 15:51:08 +02:00
usage: knotctl update [-h] -a [ARGUMENT ...] -d DATA -n NAME -r RTYPE [-t TTL]
-z ZONE
2022-10-24 17:55:33 +02:00
options:
-h, --help show this help message and exit
2022-10-27 15:51:08 +02:00
-a [ARGUMENT ...], --argument [ARGUMENT ...]
Specify key - value pairs to be updated:
name=dns1.example.com.
2022-10-24 17:55:33 +02:00
-d DATA, --data DATA
-n NAME, --name NAME
-r RTYPE, --rtype RTYPE
-t TTL, --ttl TTL
-z ZONE, --zone ZONE
2022-10-24 13:28:51 +02:00
```