From ab64bc9bf63ead9d44acd61be716fccdfb990539 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Tue, 27 Jun 2023 13:06:05 +0200 Subject: [PATCH] Makefile: follow the new client API. --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 8c1732d..3e3d425 100644 --- a/Makefile +++ b/Makefile @@ -29,9 +29,15 @@ run-client-domain-add: run-client-domain-del: @$(LD_P) ./bin/dnsmanager-client user domain del $(DOMAIN) $(LOGIN_OPT) +run-client-domain-list: + @$(LD_P) ./bin/dnsmanager-client user domain list $(LOGIN_OPT) + run-client-zone-add: @$(LD_P) ./bin/dnsmanager-client user zone add $(DOMAIN).json $(LOGIN_OPT) +run-client-zone-get: + @$(LD_P) ./bin/dnsmanager-client user zone get $(DOMAIN) $(LOGIN_OPT) + RRID ?= 1 NAME ?= TTL ?= 3600 @@ -45,12 +51,6 @@ run-client-rr-update-a: run-client-rr-del: @$(LD_P) ./bin/dnsmanager-client user rr del $(DOMAIN) $(RRID) $(LOGIN_OPT) -run-client-zone-get: - @$(LD_P) ./bin/dnsmanager-client user zone get $(DOMAIN) $(LOGIN_OPT) - -run-client-zone-list: - @$(LD_P) ./bin/dnsmanager-client user zone list $(LOGIN_OPT) - ################## ### SETUP COMMANDS ##################