summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorKiall Mac Innes <kiall@hp.com>2013-11-12 12:07:35 +0000
committerKiall Mac Innes <kiall@hp.com>2013-11-12 14:36:09 +0000
commitc0c6e59a17bb7fa9edcd34001b09f3a04f89a770 (patch)
treef1143b9b46e5c5308eb0faab9900184b1f700da4 /setup.cfg
parent12c57f2809820aec1344ff43ebfb688dc782b2fd (diff)
downloadpython-designateclient-c0c6e59a17bb7fa9edcd34001b09f3a04f89a770.tar.gz
Move "sync" commands out of Diagnostics and fix them
This mirrors the layout on the server side. I don't consider this a breaking change, as the existing sync commands were broken to begin with. Change-Id: Id80e148e2a0218d6bd64673bb09c15ab0d98418b
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg8
1 files changed, 5 insertions, 3 deletions
diff --git a/setup.cfg b/setup.cfg
index 0bca6b0..e55cec9 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -35,6 +35,7 @@ designateclient.v1.controllers =
domains = designateclient.v1.domains:DomainsController
records = designateclient.v1.records:RecordsController
servers = designateclient.v1.servers:ServersController
+ sync = designateclient.v1.sync:SyncController
designateclient.cli =
domain-list = designateclient.cli.domains:ListDomainsCommand
@@ -57,9 +58,10 @@ designateclient.cli =
server-delete = designateclient.cli.servers:DeleteServerCommand
diagnostics-ping = designateclient.cli.diagnostics:PingCommand
- diagnostics-sync-all = designateclient.cli.diagnostics:SyncAllCommand
- diagnostics-sync-domain = designateclient.cli.diagnostics:SyncDomainCommand
- diagnostics-sync-record = designateclient.cli.diagnostics:SyncRecordCommand
+
+ sync-all = designateclient.cli.sync:SyncAllCommand
+ sync-domain = designateclient.cli.sync:SyncDomainCommand
+ sync-record = designateclient.cli.sync:SyncRecordCommand
report-count-all = designateclient.cli.reports:CountsCommand
report-count-domains = designateclient.cli.reports:DomainCountCommand