summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Prep for release 0.9.5RELEASE-0.9.5-10.9-maintCole Robinson2013-04-0146-24000/+30455
|
* Allow empty cpu modelKen ICHIKAWA2013-03-252-0/+5
| | | | | | | | | | | | | If we specify cpu model and apply once, we could not specify empty cpu model again with following error. "Error changing VM configuration: internal error Non-empty feature list specified without CPU model" That is not useful to restore default cpu model. This patch fixes above issue. Signed-off-by: Ken ICHIKAWA <ichikawa.ken@jp.fujitsu.com> (crobinso: minor cleanup, add Ken to AUTHORS)
* Add a force reset item to all shutdown menusJohn Doyle2013-03-168-1/+80
|
* createvol: Don't default to sparse LVMCole Robinson2013-03-131-1/+6
| | | | | Sparse LVM volumes don't autogrow, which makes them not as useful for virt-manager target users. Don't do it by default
* Strip whitespace from remote hostnameDave Allan2013-03-012-1/+2
| | | | | | | | If users accidentally add whitespace to the beginning or end of a hostname their connection will fail, so strip it. Fixes BZ 818438 - Whitespace in remote connection hostname field is not trimmed (crobinso: Add Dave to AUTHORS)
* Update tips for Checkbox "Allocate entire disk now"Chen Hanxiao2013-03-011-1/+3
| | | | | | | | | | | | | As discussed in: https://www.redhat.com/archives/virt-tools-list/2013-February/msg00154.html There is a bug when creating disk image as qcow2, enable fully allocating but get the minimal sparse image. We should give users a notification which describing this. Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com> (crobinso: tweak message a bit)
* virt-manager: add support for iotuneDavid Shane Holden2013-03-014-2/+375
| | | | (crobinso: Add David to AUTHORS, pylint cleanups, enable for test driver)
* spec: Add explicit pod2man depCole Robinson2013-03-011-0/+1
|
* Add support for security relabelingMartin Kletzander2013-02-063-12/+54
| | | | | | | | | | | virt-install already supports relabeling, but virt-manager doesn't and in some cases, this can cause problems, for example when switching to dynamic labeling with the relabeling turned off. I took the approach of allowing the user to choose, with safe fallbacks to defaults. Deals also with this: https://bugzilla.redhat.com/show_bug.cgi?id=907390
* Match default storage size valuesMartin Kletzander2013-02-061-2/+2
| | | | | When creating a new volume, there is either 8GB or 1000MB default. This patch simply changes the second default to match the first one.
* Disable a bunch of pep8 tests I won't fix before gtk3 portCole Robinson2013-02-062-3/+19
|
* Grrr, fix dbus int cast (how did I screw this up??)Cole Robinson2013-01-061-1/+1
|
* Fix FileChooser hangs on F18 KDE (bz 880781)Cole Robinson2013-01-061-4/+4
| | | | | | We need to move the icon_theme lookup to after the fork. My guess is that the looku ints inits some internal gtk dbus state which is then no longer valid after we fork.
* Fix packagekit package install on KDE with apperCole Robinson2012-12-201-1/+2
| | | | | Apper requires a uint, gnome-packagekit doesn't seem to care either way https://bugzilla.redhat.com/show_bug.cgi?id=882024
* network: Fix parsing <ip> blocks with prefix=Cole Robinson2012-12-171-5/+15
| | | | https://bugzilla.redhat.com/show_bug.cgi?id=872814
* Add virtio lun and virtio-scsi lun disk bus optionChen Hanxiao2012-12-141-0/+4
| | | | | | | | | | | | As a result of CVE-2011-4127, libvirt disabled generic SCSI commands passed through to the underlying disk by qemu from a guest to a virtio disk when device type is "disk" afer commit 177db087757e4adb02c211de56336a5991c8eb20. And libvirt introduce a new device type "lun" to allow SG_IO commands passing through. This patch allows VM admin to configure this via virt-manager. Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
* Add virtio-scsi disk bus optionChenHanxiao2012-12-092-0/+27
| | | | | | | | | | | | This patch will add virtio-scsi bus option on "Add New Virtual Hardware" GUI page. It will support users to add a virtual disk using SCSI bus with a controller model virtio-scsi. If there is no SCSI controller existed, a new SCSI controller by model 'virtio-scsi' will be added automatically. Signed-off-by: ChenHanxiao <chenhanxiao@cn.fujitsu.com> (crobinso: add Chen to AUTHORS, some cosmetic tweaks)
* Make deleting storage files default with added promptMartin Kletzander2012-12-046-4/+79
| | | | | | | | | | This patch changes the default checkbox-state of "Delete all associated storage" to be checked, but adds a prompt with a warning for users to be sure they notice this change and they know what they are doing (hopefully). (crobinso: confirm even if no gconf schema available, cosmetic spacing fixup, add Martin to AUTHORS)
* Bump gtkbuilder sanitization to fix things on gtk 2.20Cole Robinson2012-11-271-1/+1
|
* addhw: Remove unused field and old comment for USB miceCole Robinson2012-11-271-7/+3
|
* addhw: Translate disk strings, allow test conn to use them allCole Robinson2012-11-271-10/+16
|
* Fix --test-first-runMichal Privoznik2012-10-302-1/+2
| | | | | | | | One of previous patches (96ce9ac0b125) invented this feature. However, in options object it is called testfirstrun not test_first_run. This produces a runtime error. (crobinso: add Michal to AUTHORS)
* domain: Fix more backtraces from PMSUSPEND statusCole Robinson2012-10-291-1/+10
|
* Make main window parent of package install dialogsCole Robinson2012-10-282-3/+3
|
* Fix detection of running libvirtd via systemdCole Robinson2012-10-282-3/+8
|
* Fix package install with PackageKit 0.8.4Cole Robinson2012-10-281-2/+13
|
* Add hidden --test-first-run switch for testing PackageKit bitsCole Robinson2012-10-282-2/+17
| | | | | Basically stubs out the gconf URI fetching + listing so we don't need to delete anything to trigger it.
* details: Show pretty video model in device listCole Robinson2012-10-282-5/+8
| | | | And show pretty model name everywhere
* create: Only show linux + windows OS options by defaultCole Robinson2012-10-241-0/+4
|
* create: Fix backtrace when showing all OS optionsCole Robinson2012-10-241-1/+1
|
* create: Sort OS types, so linux is at the topCole Robinson2012-10-241-0/+2
|
* addhw: Only show progress dialog if creating storageCole Robinson2012-10-211-6/+7
|
* module_trace: Tweak some debuggingCole Robinson2012-10-211-12/+7
|
* spec: Fix libgnome-keyring conditionalCole Robinson2012-10-191-1/+1
|
* configure: make us a non-gnu appCole Robinson2012-10-185-391/+19
|
* Edit description using SetMetadata when availableMarcus Karlsson2012-10-163-10/+19
| | | | | | | | | | | Since 0.9.10 libvirt supports editing a domain's metadata using the SetMetadata API. Using that API the description of a domain can be edited as it is running. Make virt-manager edit the description of a domain using SetMetadata when available. (crobinso: Add Markus to AUTHORS)
* details: Teach it about our faux description hotplugCole Robinson2012-10-141-0/+10
|
* browse_local: Fix choosing directory of F17Cole Robinson2012-10-141-14/+9
| | | | | | | Seems hiding the dialog before retrieving the directory path stopped working. Remove the needlessness anyways https://bugzilla.redhat.com/show_bug.cgi?id=849450
* domain: Handle PMSUSPENDED statusCole Robinson2012-10-141-5/+11
| | | | | | And add a catchall https://bugzilla.redhat.com/show_bug.cgi?id=850954
* details: Reset apply button when switching to console windowCole Robinson2012-09-271-2/+3
|
* Add --trace-libvirt option to see every libvirt API callCole Robinson2012-09-272-0/+89
|
* Update to newer INSTALL copyCole Robinson2012-09-261-4/+4
|
* virt-manager: Fix KVM_PACKAGES substitution variableMarc Deslauriers2012-09-061-1/+1
| | | | | | | | | | | | | | | | | | | | Hello, Commit 68e78244e851f1f3829f711249d1f375103a2a4d changed the HV_PACKAGES variable to KVM_PACKAGES in src/virt-manager.py.in, but the corresponding change was never made to src/Makefile.am. Here is a patch to correct the issue. Thanks, Marc. commit 93ba787355736733c189e6809b9108a70f0e02d4 Author: Marc Deslauriers <marc.deslauriers@ubuntu.com> Date: Wed Aug 22 13:21:48 2012 -0400 Fix incorrect substitution variable
* change Mbps to MB/s in migration dialogJoey Boggs2012-08-1345-65/+66
| | | | (crobinso: add Joey to AUTHORS)
* Prep for release 0.9.4RELEASE-0.9.4-1Cole Robinson2012-07-2945-2919/+2527
|
* Use python in path rather than hardcoding /usr/bin/pythonCole Robinson2012-07-193-3/+3
| | | | | | | | | | | | | | | | | | This reverts two commits: 5104669795788a1685006761b437e9b296840f89 f91523197f91417fc3440c77fe4c79967bb28345 The change was originally made for unknown reasons: it was requested through a RHEL bug that didn't have any justification and I just changed it in ignorance: https://bugzilla.redhat.com/show_bug.cgi?id=708181 But it causes issues on freebsd where apparently python is installed into /usr/local/bin/python by default: https://www.redhat.com/archives/virt-tools-list/2012-July/msg00131.html
* vnc: Default to automatic keyboard grabbingCole Robinson2012-07-151-1/+1
| | | | | | | This is what vinagre and virt-viewer do, and what gtkvnc enables by default. It has some weird symantics, namely that moving the mouse over the viewer means alt-tab is only received by the guest. But it's the common mode of operation, so let's be consistent.
* Revert "Make VNC grab alt+tab when focused"Cole Robinson2012-07-151-17/+0
| | | | | | | This reverts commit 32456e5ed736ee70e3da153bf95eacec3052fc9c. Causes lots of focus issues with VNC and no tablet device :( Example: https://bugzilla.redhat.com/show_bug.cgi?id=840240
* Prep for release 0.9.3RELEASE-0.9.3-1Cole Robinson2012-07-093-1/+9
|
* Make autogen.sh give me a usable dist on F17Cole Robinson2012-07-097-307/+406
| | | | There's a decent amount of resulting fallout...