summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/taskgroup.py
diff options
context:
space:
mode:
authorPavel Zuna <pzuna@redhat.com>2009-06-16 16:51:44 +0200
committerRob Crittenden <rcritten@redhat.com>2009-07-02 13:33:02 -0400
commit4b6a6c405cb66b38e1fd0961eaaca406f061fa60 (patch)
tree275432c9087b9d6225271dbe4821c6f728ba1f05 /ipalib/plugins/taskgroup.py
parent89993d9939e938d7e3305da59c3b61aa84792593 (diff)
downloadfreeipa-4b6a6c405cb66b38e1fd0961eaaca406f061fa60.tar.gz
freeipa-4b6a6c405cb66b38e1fd0961eaaca406f061fa60.tar.xz
freeipa-4b6a6c405cb66b38e1fd0961eaaca406f061fa60.zip
Rename *-create/*-delete commands to *-add/*-del respectively.
Diffstat (limited to 'ipalib/plugins/taskgroup.py')
-rw-r--r--ipalib/plugins/taskgroup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipalib/plugins/taskgroup.py b/ipalib/plugins/taskgroup.py
index cba0b4c9e..d22ac8229 100644
--- a/ipalib/plugins/taskgroup.py
+++ b/ipalib/plugins/taskgroup.py
@@ -37,21 +37,21 @@ class taskgroup(basegroup):
api.register(taskgroup)
-class taskgroup_create(basegroup_create):
+class taskgroup_add(basegroup_add):
"""
Create new taskgroup.
"""
-api.register(taskgroup_create)
+api.register(taskgroup_add)
-class taskgroup_delete(basegroup_delete):
+class taskgroup_del(basegroup_del):
"""
Delete taskgroup.
"""
container = _container_dn
-api.register(taskgroup_delete)
+api.register(taskgroup_del)
class taskgroup_mod(basegroup_mod):