summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Prep for release 1.0.1v1.0.1Cole Robinson2014-03-2248-27291/+32573
|
* details: Fix unsetting autoport valuesCole Robinson2014-03-223-3/+15
|
* connection: Make sure a DEFINED event forces a config-change signalCole Robinson2014-03-221-2/+2
| | | | | | Even if XML didn't change. This is what we do in the non-event case. Makes it more clear if details->apply triggers a define, but our change didn't stick for any reason.
* addhw: Remove unused helper functionCole Robinson2014-03-222-22/+3
|
* details: Fix setting cache/io to hypervisor defaultCole Robinson2014-03-221-3/+3
|
* gfxdetails: Fix mnemonics to not collideCole Robinson2014-03-221-2/+2
|
* details: Rework all define and hotplug operationsCole Robinson2014-03-222-580/+480
| | | | | | | Rather than register a bunch of functions to call, lump it all into one function per page. This allows us to easily call UpdateDevice unconditionally, to pick up any addition hotplug operations that become available via libvirt and qemu.
* cli: Rename --membacking to --memorybackingCole Robinson2014-03-223-7/+7
| | | | | More consistent with the existing --memory option, and the XML block name.
* guest: Drop back compat hugepage attributeCole Robinson2014-03-224-8/+6
|
* cli: Move hugepages=on example to membackingCole Robinson2014-03-221-2/+3
|
* virt-install: Add --membacking optionChen Hanxiao2014-03-228-0/+66
| | | | | | Add option --membacking for "Memory Backing". Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
* remove memoryBacking parameters from --memoryChen Hanxiao2014-03-225-9/+0
| | | | | | | Remove some "Memory Backing" parameters from --memory, and keep 'hugepages' for backward compatibility. Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
* More pylint fixesCole Robinson2014-03-2210-14/+29
|
* Turn off some warnings with latest pylintCole Robinson2014-03-222-2/+4
|
* details: Don't try to show machine type for management domainCole Robinson2014-03-201-1/+2
|
* create: Add some more loggingCole Robinson2014-03-201-7/+10
|
* capabilities: Handle arch=none for CPU lookupCole Robinson2014-03-201-7/+7
|
* capabilities: Handle broken return value of failed CPUModelNamesCole Robinson2014-03-201-5/+7
|
* connection: Add explicit API for getting virConnect objectCole Robinson2014-03-204-9/+11
|
* domain: Fix viewing details of xen management domainCole Robinson2014-03-201-3/+3
|
* virt-manager: disable CD/DVDROM passtrough on RHELGiuseppe Scrivano2014-03-202-2/+13
| | | | | | Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1072610 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* virt-manager: disable filesystem passtrough on RHELGiuseppe Scrivano2014-03-201-1/+2
| | | | | | Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1077172 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* virtManager: show the state reason in the VM overviewGiuseppe Scrivano2014-03-201-1/+6
| | | | | | Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1073766 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* virtManager: read the reason for the domain stateGiuseppe Scrivano2014-03-202-0/+60
| | | | Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* create: Exit URL detection immediately if detection failsCole Robinson2014-03-191-9/+13
|
* create: Fix URL autodetect timeout detectionCharles Arnold2014-03-191-1/+1
| | | | | | | | When 'Network Install' is selected and a malformed url is entered in the 'URL:' box virt-manager will hang forever 'Detecting...'. For example, leave the 'http://' off the url when 'Automatically detect...' is enabled. Signed-off-by: Charles Arnold <carnold@suse.com>
* create: Pass correct connection to install for detectionCole Robinson2014-03-191-1/+1
|
* Add more parameters for memoryBackingChen Hanxiao2014-03-145-0/+9
| | | | | | | Add support for parameters nosharepages and locked if using option --memory. Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
* man: fix a typo in virt-install.podChen Hanxiao2014-03-141-1/+1
| | | | | | s/libvirt/Libvirt Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
* host: unselect_all members before clear modelChen Hanxiao2014-03-141-0/+5
| | | | | | | | | | | | | | | | Interface_selected is being triggered by model.clear() in populate_interfaces. It usually calls interface_selected on every interface after the current selected row. So the gtk code is probably removing the first row over and over, and when it removes the current selection (the interface we are deleting), it selects the next row in line. It will raise a KeyError. This patch will fix this issue. Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
* virtinst: use libvirt getCPUModelNames when availableGiuseppe Scrivano2014-03-134-18/+54
| | | | | | | | | Read the list of CPU models trough getCPUModelNames instead of accessing directly the file cpu_map.xml. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1060316 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* virtinst: drop parsing of cpu featuresGiuseppe Scrivano2014-03-132-49/+7
| | | | | | | | As for the previous patch, this information is not used anywhere and this information should be retrieved using the libvirt baselineCPU API. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* virtinst: drop cpu_map parsing of arch featuresGiuseppe Scrivano2014-03-132-22/+5
| | | | | | | This information is not used anywhere and there is no way to read it directly from libvirt without parsing the cpu_map.xml file. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* addhw: Desensitive the 'create storage' UI for cdrom/floppyCole Robinson2014-03-124-93/+100
| | | | Since we already fail in that case anyways, it makes things a bit clearer.
* addhw: Fix adding empty cdrom/floppy driveCole Robinson2014-03-121-2/+2
|
* create: Clarify some bits in change_capsCole Robinson2014-03-121-7/+3
|
* create: Remove self.caps, it's redundantCole Robinson2014-03-121-8/+5
|
* create: Invalidate cached caps across similar connections (bz 1075444)Cole Robinson2014-03-121-2/+2
|
* domain: fix a typoChen Hanxiao2014-03-121-1/+1
| | | | | | s/checkig/checking Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
* Add a gsetting key to disable keyboard grabbingKjö Hansi Glaz2014-03-103-1/+36
| | | | | | Add a gsetting key to disable keyboard grabbing that works the same way as spicy when unchecking "Options" > "Grab keyboard when active and focused".
* ui: Drop minimum version to match RHEL7Cole Robinson2014-03-104-3/+27
| | | | And add unit test to catch future dependency issues
* lxc: define a private network for OS containersGiuseppe Scrivano2014-03-102-5/+16
| | | | | | | | By default, specify the the "<privnet>" feature with LXC operating system containers. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1040406 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* connection: Handle errors when deregistering events on close (bz 1069351)Cole Robinson2014-03-101-9/+18
| | | | | | Otherwise this interrupts the close/cleanup routine, and the connection never appears to disconnect in the UI. This causes error dialog spamming when libvirtd goes down.
* storagebrowse: Duplicate tooltip logic for 'new volume' buttonCole Robinson2014-03-101-5/+10
|
* doc: fix typo in virt-install man pageGiuseppe Scrivano2014-03-101-1/+1
| | | | Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
* spec: Drop needless version/release macrosCole Robinson2014-03-071-6/+2
|
* addhardware: Fix adding disk through 'customize' dialog (bz 1073808)Cole Robinson2014-03-071-1/+3
|
* clitest: put fake iso under /tmp dirChen Hanxiao2014-03-073-4/+8
| | | | | | | | | | | | | commit 797afb3b273d08a74119c878b689730f0b36a252 bring a dir depending issue when using fake iso. Test output will be undecided when virt-manager source in different dirs. This patch will touch a fake iso under /tmp, so test case will pass on most of the machines. Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
* virt-install: Fix --location iso again, and test it (bz 1071513)Cole Robinson2014-03-066-20/+167
|
* Handle libvirt generating invalid volume XML (bz 1072770)Cole Robinson2014-03-062-2/+2
|