forked from msvsphere/leapp-repository
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.
24 lines
632 B
24 lines
632 B
from leapp.models import fields, Model
|
|
from leapp.topics import SystemInfoTopic
|
|
|
|
|
|
class SpamassassinFacts(Model):
|
|
topic = SystemInfoTopic
|
|
|
|
spamc_ssl_argument = fields.Nullable(fields.String())
|
|
"""
|
|
SSL version specified by the --ssl option in the spamc config file, or None
|
|
if no value is given.
|
|
"""
|
|
|
|
spamd_ssl_version = fields.Nullable(fields.String())
|
|
"""
|
|
SSL version specified by the --ssl-version in the spamassassin sysconfig file,
|
|
or None if no value is given.
|
|
"""
|
|
|
|
service_overriden = fields.Boolean()
|
|
"""
|
|
True if spamassassin.service is overridden, else False.
|
|
"""
|