mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Add missing required attribute, nisdomainname
This commit is contained in:
parent
536b215078
commit
21ccdec860
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user