You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
395 B
17 lines
395 B
9 months ago
|
from leapp.models import fields, Model
|
||
|
from leapp.topics import SystemInfoTopic
|
||
|
|
||
|
|
||
|
class NISConfig(Model):
|
||
|
"""
|
||
|
The model contains NIS packages configuration status.
|
||
|
"""
|
||
|
topic = SystemInfoTopic
|
||
|
|
||
|
nis_not_default_conf = fields.List(fields.String(), default=[])
|
||
|
"""
|
||
|
List of names of NIS packages with modified default configuration.
|
||
|
|
||
|
e.g. ["ypbind", "ypserv"]
|
||
|
"""
|