mirror of
https://platform.sunet.se/SUNET/knotctl.git
synced 2025-07-12 06:18:30 +02:00
Compare commits
2 commits
1c04ebcc18
...
3fff646945
Author | SHA1 | Date | |
---|---|---|---|
|
3fff646945 | ||
|
41c5efa97e |
2 changed files with 3 additions and 3 deletions
|
@ -419,7 +419,6 @@ def main() -> int:
|
|||
updatecmd.add_argument(
|
||||
"-a",
|
||||
"--argument",
|
||||
nargs="*",
|
||||
action="append",
|
||||
metavar="KEY=VALUE",
|
||||
help="Specify key - value pairs to be updated: name=dns1.example.com. or data=127.0.0.1 for example. --argument can be repeated",
|
||||
|
@ -473,6 +472,7 @@ def main() -> int:
|
|||
headers = {"Authorization": "Bearer {}".format(token)}
|
||||
|
||||
# Route based on command
|
||||
url = ""
|
||||
ttl = None
|
||||
if "ttl" in args:
|
||||
ttl = args.ttl
|
||||
|
@ -520,7 +520,7 @@ def main() -> int:
|
|||
run_log(url, args.json, headers)
|
||||
else:
|
||||
parser.print_help(sys.stderr)
|
||||
return 1
|
||||
return 2
|
||||
except requests.exceptions.RequestException as e:
|
||||
output(error(e, "Could not connect to server"))
|
||||
except (RequestsJSONDecodeError, SimplejsonJSONDecodeError):
|
||||
|
|
|
@ -16,7 +16,7 @@ classifiers=[
|
|||
"Operating System :: OS Independent",
|
||||
]
|
||||
requires-python= ">=3.9"
|
||||
version = "0.0.9"
|
||||
version = "0.1.0"
|
||||
|
||||
dependencies = [
|
||||
"argcomplete==2.0.0",
|
||||
|
|
Loading…
Add table
Reference in a new issue