mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-09 09:57:40 +03:00
Introduce both the launchSecurity XML and parser classes. While at it, add launchSecurity as a property instance to the Guest class too. The parser requires the 'type' argument to be mandatory since in the future it will determine different code paths, therefore '--launchSecurity foo=bar' is incorrect. Reviewed-by: Cole Robinson <crobinso@redhat.com> Signed-off-by: Erik Skultety <eskultet@redhat.com>
25 lines
801 B
Python
25 lines
801 B
Python
# This work is licensed under the GNU GPLv2 or later.
|
|
# See the COPYING file in the top-level directory.
|
|
|
|
|
|
from .blkiotune import DomainBlkiotune
|
|
from .clock import DomainClock
|
|
from .cpu import DomainCpu
|
|
from .cputune import DomainCputune
|
|
from .features import DomainFeatures
|
|
from .idmap import DomainIdmap
|
|
from .metadata import DomainMetadata
|
|
from .memorybacking import DomainMemoryBacking
|
|
from .memtune import DomainMemtune
|
|
from .numatune import DomainNumatune
|
|
from .os import DomainOs
|
|
from .pm import DomainPm
|
|
from .resource import DomainResource
|
|
from .seclabel import DomainSeclabel
|
|
from .sysinfo import DomainSysinfo
|
|
from .vcpus import DomainVCPUs
|
|
from .xmlnsqemu import DomainXMLNSQemu
|
|
from .launch_security import DomainLaunchSecurity
|
|
|
|
__all__ = [l for l in locals() if l.startswith("Domain")]
|