2013-03-17 16:06:52 -05:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
# MA 02110-1301 USA.
|
|
|
|
|
2013-03-17 17:18:22 -05:00
|
|
|
from virtcli import cliconfig, cliutils
|
2013-07-13 18:38:38 -05:00
|
|
|
enable_rhel_defaults = not cliconfig.rhel_enable_unsupported_opts
|
2013-03-17 17:18:22 -05:00
|
|
|
cliutils.setup_i18n()
|
2013-03-17 16:06:52 -05:00
|
|
|
|
|
|
|
|
2013-08-08 19:47:17 -05:00
|
|
|
from virtinst import util
|
|
|
|
from virtinst import support
|
2013-03-17 16:06:52 -05:00
|
|
|
|
2013-07-17 06:53:47 -05:00
|
|
|
from virtinst.osxml import OSXML
|
2013-08-08 20:42:44 -05:00
|
|
|
from virtinst.domainfeatures import DomainFeatures
|
|
|
|
from virtinst.domainnumatune import DomainNumatune
|
|
|
|
from virtinst.clock import Clock
|
|
|
|
from virtinst.cpu import CPU, CPUFeature
|
|
|
|
from virtinst.seclabel import Seclabel
|
|
|
|
|
|
|
|
import virtinst.nodedev as NodeDeviceParser
|
|
|
|
import virtinst.capabilities as CapabilitiesParser
|
2013-09-19 19:18:12 -05:00
|
|
|
from virtinst.storage import StoragePool, StorageVolume
|
2013-09-09 16:14:16 -05:00
|
|
|
from virtinst.interface import Interface, InterfaceProtocol
|
2013-08-08 20:42:44 -05:00
|
|
|
|
|
|
|
from virtinst.device import VirtualDevice
|
|
|
|
from virtinst.deviceinterface import VirtualNetworkInterface
|
|
|
|
from virtinst.devicegraphics import VirtualGraphics
|
|
|
|
from virtinst.deviceaudio import VirtualAudio
|
|
|
|
from virtinst.deviceinput import VirtualInputDevice
|
|
|
|
from virtinst.devicedisk import VirtualDisk
|
|
|
|
from virtinst.devicehostdev import VirtualHostDevice
|
|
|
|
from virtinst.devicechar import (VirtualChannelDevice,
|
|
|
|
VirtualConsoleDevice,
|
|
|
|
VirtualParallelDevice,
|
|
|
|
VirtualSerialDevice)
|
|
|
|
from virtinst.devicevideo import VirtualVideoDevice
|
|
|
|
from virtinst.devicecontroller import VirtualController
|
|
|
|
from virtinst.devicewatchdog import VirtualWatchdog
|
|
|
|
from virtinst.devicefilesystem import VirtualFilesystem
|
|
|
|
from virtinst.devicesmartcard import VirtualSmartCardDevice
|
|
|
|
from virtinst.deviceredirdev import VirtualRedirDevice
|
|
|
|
from virtinst.devicememballoon import VirtualMemballoon
|
|
|
|
from virtinst.devicetpm import VirtualTPMDevice
|
2013-09-18 08:29:28 -05:00
|
|
|
from virtinst.devicerng import VirtualRNGDevice
|
2013-08-08 20:42:44 -05:00
|
|
|
|
|
|
|
from virtinst.installer import (ContainerInstaller, ImportInstaller,
|
2013-08-08 19:47:17 -05:00
|
|
|
LiveCDInstaller, PXEInstaller, Installer)
|
|
|
|
|
2013-08-08 20:42:44 -05:00
|
|
|
from virtinst.distroinstaller import DistroInstaller
|
2013-08-08 19:47:17 -05:00
|
|
|
|
2013-08-08 20:42:44 -05:00
|
|
|
from virtinst.guest import Guest
|
|
|
|
from virtinst.cloner import Cloner
|
2013-08-05 16:20:35 -05:00
|
|
|
from virtinst.snapshot import DomainSnapshot
|
2013-08-08 19:47:17 -05:00
|
|
|
|
2013-07-05 07:59:58 -05:00
|
|
|
from virtinst.connection import VirtualConnection
|