aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* authors: update my authors detailsJustin Clift2010-07-091-1/+1
|
* bridge_driver.c: fix file descriptionAlan Pevec2010-06-231-0/+1
|
* Trivial virsh.pod additions --all for "list" command and similarJustin Clift2010-06-011-0/+1
| | | | | | | | | | | | | | | | | | | | | | | This is just a trivial patch to virsh.pod (from git master). It adds the following pieces to the virsh man page: + Shows the --inactive and --all optional parameters for the list command. Closes Bugzilla #575512, reported by Renich Bon Ciric https://bugzilla.redhat.com/show_bug.cgi?id=575512 + Corrects the existing description of the list command, to now say that only running domains are listed if no domains are specified. The man page up until this point has said all domains are listed if no domains are specified, which is incorrect. + Adds the "shut off" state to the list of states for the list command. + Adds a missing =back around line 755, that pod2man was complaining was missing.
* maint: update AUTHORS with recent contributorsEric Blake2010-05-271-0/+15
| | | | | | | | git shortlog $(git log -1 --format=%H AUTHORS).. | grep -v "^ " then add missing entries to AUTHORS. * AUTHORS: Update.
* maint: update AUTHORS with recent contributorsEric Blake2010-05-241-0/+4
| | | | | | | | git shortlog $(git log -1 --format=%H AUTHORS).. | grep -v "^ " then add missing entries to AUTHORS. * AUTHORS: Update.
* maint: update AUTHORSMarco Bozzolan2010-04-231-1/+1
| | | | | | * AUTHORS: Use preferred name. Signed-off-by: Eric Blake <eblake@redhat.com>
* maint: update AUTHORS with recent contributorsEric Blake2010-04-221-0/+7
| | | | | | | | git shortlog $(git log -1 --format=%H AUTHORS).. | grep -v "^ " then add missing entries to AUTHORS. * AUTHORS: Update.
* maint: update AUTHORSEric Blake2010-03-311-0/+3
| | | | * AUTHORS: Add recent contributors.
* Updating the commiters listDaniel Veillard2010-03-301-3/+3
| | | | Laine Stump, Stefan Berger, Eric Blake now have commit rights !
* python: Fix networkLookupByUUIDPhilip Hahn2010-03-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to: http://libvirt.org/html/libvirt-libvirt.html#virNetworkLookupByUUID virNetworkLookupByUUID() expects a virConnectPtr as its first argument, thus making it a method of the virConnect Python class. Currently it's a method of libvirt.virNetwork. @@ -805,13 +805,6 @@ class virNetwork: if ret == -1: raise libvirtError ('virNetworkGetAutostart() failed', net=self) return ret - def networkLookupByUUID(self, uuid): - """Try to lookup a network on the given hypervisor based on its UUID. """ - ret = libvirtmod.virNetworkLookupByUUID(self._o, uuid) - if ret is None:raise libvirtError('virNetworkLookupByUUID() failed', net=self) - __tmp = virNetwork(self, _obj=ret) - return __tmp - class virInterface: def __init__(self, conn, _obj=None): self._conn = conn @@ -1689,6 +1682,13 @@ class virConnect: __tmp = virDomain(self,_obj=ret) return __tmp + def networkLookupByUUID(self, uuid): + """Try to lookup a network on the given hypervisor based on its UUID. """ + ret = libvirtmod.virNetworkLookupByUUID(self._o, uuid) + if ret is None:raise libvirtError('virNetworkLookupByUUID() failed', conn=self) + __tmp = virNetwork(self, _obj=ret) + return __tmp +
* Update commiters listDaniel Veillard2010-03-121-1/+1
|
* AUTHORS: add recent contributorsEric Blake2010-03-091-0/+5
|
* Add Jiri Denemark <jdenemar@redhat.com> to commitersDaniel Veillard2010-01-191-1/+1
|
* Add some people missing from the AUTHORS listDaniel Veillard2009-12-221-0/+9
|
* Fix cdub's surname spellingMark McLoughlin2009-09-241-1/+1
|
* Added Matthias Bolte as commiterDaniel Veillard2009-09-241-1/+1
|
* Add Miloslav Trmač to AUTHORS fileDaniel P. Berrange2009-09-011-0/+1
|
* Added Matthias Bolte to AUTHORS listDaniel Veillard2009-07-231-0/+1
|
* add cd and pwd commands to virshPaolo Bonzini2009-07-161-0/+1
| | | | | | | * src/virsh.c: adds cd and pwd commands to virsh useful for save and restore commands * docs/virsh.pod virsh.1: update the documentation * AUTHORS: add Paolo Bonzini
* Fix some missing parts in network code and schemasDaniel Veillard2009-07-021-0/+1
| | | | | | | | | * docs/schemas/network.rng: fix the network schemas to match new accepted elements, patch by Satoru SATOH * src/network_conf.c: fix network driver to save the domain name in XML if present, patch by Satoru SATOH * AUTHORS: adding Satoru SATOH Daniel
* allow to create storage volumes on disk backendDaniel Veillard2009-06-261-0/+1
| | | | | | | | * src/libvirt_private.syms src/parthelper.c src/storage_backend_disk.c src/storage_conf.c src/storage_conf.h: allow to create storage volumes on disk backend, patches by Henrik Persson * AUTHORS: add Henrik Persson Daniel
* fix UML driver logging macrosDaniel Veillard2009-06-251-0/+1
| | | | | | * src/uml_driver.c: fix UML driver logging macros, patch by Amy Griffis * AUTHORS: adding Amy Griffis Daniel
* Fix a couple of state problemsDaniel Veillard2009-06-251-0/+2
| | | | | | | | | * src/qemu_driver.c: fix a domain state problem after migration, patch by Federico Simoncelli, fixes #507537 * src/domain_conf.c: fix a transcient domain state problem after destroy, patch by Federico Simoncelli, fixes #507304 * AUTHORS: add Federico Simoncelli and Javier Fontan daniel
* find and use kvm-img, qemu-img or qcow-create dynamicallyDaniel Veillard2009-06-111-0/+1
| | | | | | | | * configure.in src/libvirt_private.syms src/storage_backend_fs.c src/util.c src/util.h: find and use kvm-img, qemu-img or qcow-create dynamically at runtime, patch by Doug Goldstein * AUTHORS: add Doug Goldstein Daniel
* Include the OpenNebula driverDaniel Veillard2009-05-251-0/+1
| | | | | | | | | | | * src/opennebula/one_conf.[ch] src/opennebula/one_driver.[ch]: the OpenNebula driver * configure.in include/libvirt/virterror.h qemud/Makefile.am qemud/qemud.c src/Makefile.am src/domain_conf.[ch] src/driver.h src/libvirt.c src/virterror.c: integration of the OpenNebula driver in the libvirt infrastructure * AUTHORS: add Abel Miguez Rodriguez daniel
* Add the Interface config APIsDaniel Veillard2009-05-201-0/+1
| | | | | | | | | | | | | | * configure.in include/libvirt/libvirt.h[.in] include/libvirt/virterror.h qemud/remote.c qemud/remote_dispatch_args.h qemud/remote_dispatch_prototypes.h qemud/remote_dispatch_ret.h qemud/remote_dispatch_table.h qemud/remote_protocol.[chx] src/Makefile.am src/datatypes.c src/datatypes.h src/driver.h src/libvirt.c src/remote_internal.c src/virterror.c src/libvirt_private.syms src/libvirt_public.syms: Add the Interface config APIs and remote stubs for those, patch by Laine Stump * AUTHORS: add Laine daniel
* Fix /dev/ population to use char devices (Ryota Ozaki)Daniel P. Berrange2009-05-081-1/+0
|
* Update of localizations and XML descriptionsDaniel Veillard2009-04-241-1/+1
| | | | | | * po/*: updated a could of locale, regenerated * docs/libvirt-api.xml docs/libvirt-refs.xml: regenerated too daniel
* * src/network_conf.c src/network_conf.h: add dynamic bridge namesDaniel Veillard2009-04-211-0/+1
| | | | | | support, patch by Soren Hansen * AUTHORS: add Soren daniel
* Adding Serge E. Hallyn to the authors list, DanielDaniel Veillard2009-04-151-0/+1
|
* release of 0.6.2v0.6.2LIBVIRT_0_6_2Daniel Veillard2009-04-031-1/+2
| | | | | | | * configure.in libvirt.spec.in NEWS docs/*: release of 0.6.2 * po/*: Gujarati and Polish updates, rebuild * AUTHORS: add one missing Daniel
* Add support for a non-template filesystem root. (Florian Vichot)Daniel P. Berrange2009-03-241-0/+1
|
* use posix_fallocate() to allocate diskspace fasterDaniel Veillard2009-03-201-0/+1
| | | | | | | * src/libvirt_private.syms src/storage_backend_fs.c src/util.c src/util.h: use posix_fallocate() on supported systems to allocate diskspace faster, patches by Amit Shah Daniel
* Added ac97 soundcard to RNG schema & tests (Pritesh Kothari)Daniel P. Berrange2009-03-161-1/+2
|
* * NEWS configure.in libvirt.spec.in doc/* include/libvirt/libvirt.h:v0.6.1LIBVIRT_0_6_1Daniel Veillard2009-03-041-0/+2
| | | | | | | release of 0.6.1 * po/*: rebuilt * AUTHORS: updated to list new contributors Daniel
* Public API for sVirt support (James Morris & Dan Walsh)Daniel P. Berrange2009-03-031-0/+2
|
* plug two config-parsing leaksJim Meyering2009-03-021-0/+1
| | | | | | | * src/storage_conf.c (virStoragePoolDefParsePerms): Free mode string. (virStorageVolDefParsePerms): Likewise. * AUTHORS: Update. Patch by Ryota Ozaki.
* Change Ben Guthro emailDaniel Veillard2009-01-191-1/+1
| | | | Daniel
* Two bug fixes coming from RHEL and Markus being added to AUTHORSDaniel Veillard2009-01-191-0/+1
| | | | | | | * src/xm_internal.c: two bug fixes coming from RHEL package posted by Markus Armbruster * AUTHORS: adding Markus daniel
* trivial cleanupsGuido Günther2009-01-061-1/+4
|
* * AUTHORS: John Levon is now a commiterDaniel Veillard2009-01-061-1/+1
| | | | Daniel
* add --version support to libvirtdDaniel Veillard2008-12-121-0/+1
| | | | | | | * qemud/qemud.c: add --version support to libvirtd, patch by Dave Allan * AUTHORS: add Dave Allan Daniel
* Adding support for SDL fullscreen optionDaniel Veillard2008-12-111-0/+1
| | | | | | | | | | | | * src/domain_conf.c src/domain_conf.h src/qemu_conf.c tests/qemuxml2argvtest.c tests/qemuxml2xmltest.c tests/qemuxml2argvdata/qemuxml2argv-graphics-sdl-fullscreen.args tests/qemuxml2argvdata/qemuxml2argv-graphics-sdl-fullscreen.xml: slightly modified patch for SDL fullscreen from Itamar Heim * docs/formatdomain.html docs/formatdomain.html.in docs/libvirt.rng: update the schemas and docs about the sdl graphic element attributes * AUTHORS: add Itamar Heim Daniel
* Fix driver ordering to make domain autostart work (Gerd von Egidy)Daniel P. Berrange2008-12-021-1/+1
|
* * AUTHORS: added Guido Günther as new commiter, Dan Smith was missing tooDaniel Veillard2008-11-031-1/+2
| | | | daniel
* * src/xm_internal.c: add minimum domain memory size check for XenDaniel Veillard2008-10-311-0/+1
| | | | | | patch by Shigeki Sakamoto * AUTHORS: add Shigeki Sakamoto Daniel
* Massive patch adding event APIs by Ben GuthroDaniel Veillard2008-10-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | * include/libvirt/libvirt.h include/libvirt/libvirt.h.in src/libvirt.c src/libvirt_sym.version: new libvirt event entry points, big patch provided by Ben Guthro * Makefile.am configure.in src/driver.h src/event.c src/event.h src/internal.h src/libvirt.c src/libvirt_sym.version src/lxc_driver.c src/openvz_driver.c src/qemu_conf.h src/qemu_driver.c src/remote_internal.c src/storage_backend_fs.c src/test.c qemud/event.c qemud/event.h qemud/mdns.c qemud/qemud.c qemud/qemud.h qemud/remote.c qemud/remote_dispatch_localvars.h qemud/remote_dispatch_proc_switch.h qemud/remote_dispatch_prototypes.h qemud/remote_protocol.c qemud/remote_protocol.h qemud/remote_protocol.x proxy/Makefile.am python/generator.py: Not much is left untouched by the patch adding the events support * docs/libvirt-api.xml docs/libvirt-refs.xml docs/html/libvirt-libvirt.html: regenerated the docs * examples/domain-events/events-c/Makefile.am examples/domain-events/events-c/event-test.c: a test example * AUTHORS: added Ben Guthro daniel
* fix index creation for disksDaniel Veillard2008-10-101-0/+1
| | | | | | * src/domain_conf.c src/util.c: fix index creation for disks > {sd,hd,xvd,vd}z (Sanjay Rao and Chris Wright) Daniel
* * src/qemu_driver.c: switch flags to unsigned by James MorrisDaniel Veillard2008-09-041-0/+1
| | | | | * AUTHORS: add James Morris Daniel
* * AUTHORS: add Cole Robinson as commiterDaniel Veillard2008-09-031-1/+1
| | | | daniel