Merge "sync and touch Commands Extend the base.DeleteCommand"

This commit is contained in:
Jenkins 2014-08-30 13:21:53 +00:00 committed by Gerrit Code Review
commit a900b41e4d
2 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ from designateclient.cli import base
LOG = logging.getLogger(__name__)
class SyncAllCommand(base.Command):
class SyncAllCommand(base.DeleteCommand):
"""Sync Everything"""
def execute(self, parsed_args):
@ -29,7 +29,7 @@ class SyncAllCommand(base.Command):
LOG.info('Synchronization of all domains scheduled')
class SyncDomainCommand(base.Command):
class SyncDomainCommand(base.DeleteCommand):
"""Sync a single Domain"""
def get_parser(self, prog_name):
@ -45,7 +45,7 @@ class SyncDomainCommand(base.Command):
LOG.info('Synchronization of domain scheduled')
class SyncRecordCommand(base.Command):
class SyncRecordCommand(base.DeleteCommand):
"""Sync a single Record"""
def get_parser(self, prog_name):

View File

@ -21,7 +21,7 @@ from designateclient.cli import base
LOG = logging.getLogger(__name__)
class TouchDomainCommand(base.Command):
class TouchDomainCommand(base.DeleteCommand):
"""Touch a single Domain"""
def get_parser(self, prog_name):