2013-03-18 01:06:52 +04: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-18 02:18:22 +04:00
from virtcli import cliconfig , cliutils
2013-07-14 03:38:38 +04:00
enable_rhel_defaults = not cliconfig . rhel_enable_unsupported_opts
2013-03-18 02:18:22 +04:00
cliutils . setup_i18n ( )
2013-03-18 01:06:52 +04:00
2013-08-09 04:47:17 +04:00
from virtinst import util
from virtinst import support
2013-03-18 01:06:52 +04:00
2013-07-17 15:53:47 +04:00
from virtinst . osxml import OSXML
2013-08-09 05:42:44 +04: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-10 01:14:16 +04:00
from virtinst . interface import Interface , InterfaceProtocol
2013-09-21 04:40:07 +04:00
from virtinst . network import Network
from virtinst . storage import StoragePool , StorageVolume
2013-08-09 05:42:44 +04: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 17:29:28 +04:00
from virtinst . devicerng import VirtualRNGDevice
2013-08-09 05:42:44 +04:00
from virtinst . installer import ( ContainerInstaller , ImportInstaller ,
2013-08-09 04:47:17 +04:00
LiveCDInstaller , PXEInstaller , Installer )
2013-08-09 05:42:44 +04:00
from virtinst . distroinstaller import DistroInstaller
2013-08-09 04:47:17 +04:00
2013-08-09 05:42:44 +04:00
from virtinst . guest import Guest
from virtinst . cloner import Cloner
2013-08-06 01:20:35 +04:00
from virtinst . snapshot import DomainSnapshot
2013-08-09 04:47:17 +04:00
2013-07-05 16:59:58 +04:00
from virtinst . connection import VirtualConnection