From 4b6a6c405cb66b38e1fd0961eaaca406f061fa60 Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Tue, 16 Jun 2009 16:51:44 +0200 Subject: Rename *-create/*-delete commands to *-add/*-del respectively. --- ipalib/plugins/dns.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ipalib/plugins/dns.py') diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py index bd21ea8c7..8e6cc3c92 100644 --- a/ipalib/plugins/dns.py +++ b/ipalib/plugins/dns.py @@ -17,7 +17,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -Domain Name System (DNS) Plugin +Domain Name System (DNS) plugin Implements a set of commands useful for manipulating DNS records used by the BIND LDAP plugin. @@ -165,7 +165,7 @@ class dns(Object): api.register(dns) -class dns_create(crud.Create): +class dns_add(crud.Create): """ Create new DNS zone/SOA record. """ @@ -207,10 +207,10 @@ class dns_create(crud.Create): textui.print_entry(entry_attrs) textui.print_dashed('Created DNS zone "%s".' % idnsname) -api.register(dns_create) +api.register(dns_add) -class dns_delete(crud.Delete): +class dns_del(crud.Delete): """ Delete existing DNS zone/SOA record. """ @@ -244,7 +244,7 @@ class dns_delete(crud.Delete): textui.print_name(self.name) textui.print_dashed('Deleted DNS zone "%s".' % args[0]) -api.register(dns_delete) +api.register(dns_del) class dns_mod(crud.Update): -- cgit