diff --git a/ipalib/plugins/netgroup.py b/ipalib/plugins/netgroup.py index 3ee23d6a5..d0ef936ed 100644 --- a/ipalib/plugins/netgroup.py +++ b/ipalib/plugins/netgroup.py @@ -34,6 +34,22 @@ class netgroup(BaseGroup): netgroup object. """ container=container_netgroup + takes_params = ( + Str('description', + doc='A description of this group', + attribute=True, + ), + Str('cn', + cli_name='name', + primary_key=True, + normalizer=lambda value: value.lower(), + attribute=True, + ), + Str('nisdomainname', + doc='The NIS domain name', + attribute=True, + ), + ) api.register(netgroup)