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.
15 lines
518 B
15 lines
518 B
from leapp.models import CustomTargetRepository, fields, Model
|
|
from leapp.topics import SystemFactsTopic
|
|
|
|
|
|
class TargetOSInstallationImage(Model):
|
|
"""
|
|
An installation image of a target OS requested to be the source of target OS packages.
|
|
"""
|
|
topic = SystemFactsTopic
|
|
path = fields.String()
|
|
mountpoint = fields.String()
|
|
repositories = fields.List(fields.Model(CustomTargetRepository))
|
|
rhel_version = fields.String(default='')
|
|
was_mounted_successfully = fields.Boolean(default=False)
|