1. 25 8月, 2010 1 次提交
    • S
      docs: fix lxc examples · e9406e9e
      Serge Hallyn 提交于
      * docs/drvlxc.html.in: Use correct VM name, and mention that
      libvirt_lxc might be in an alternate location.
      e9406e9e
  2. 20 8月, 2010 1 次提交
    • P
      storage: add support for Vendor and Model in XML · 20be699e
      Patrick Dignan 提交于
      I wrote a patch to add support for listing the Vendor and Model of a
      storage pool in the storage pool XML.  This would allow vendor
      extensions of specific devices.  The patch includes a test for the new
      attributes as well.
      
      Patrick Dignan
      20be699e
  3. 10 8月, 2010 1 次提交
  4. 03 8月, 2010 1 次提交
  5. 09 7月, 2010 1 次提交
  6. 23 6月, 2010 1 次提交
  7. 02 6月, 2010 1 次提交
    • J
      Trivial virsh.pod additions --all for "list" command and similar · e5f31f46
      Justin Clift 提交于
      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.
      e5f31f46
  8. 28 5月, 2010 1 次提交
  9. 25 5月, 2010 1 次提交
  10. 23 4月, 2010 2 次提交
  11. 31 3月, 2010 1 次提交
  12. 30 3月, 2010 1 次提交
  13. 18 3月, 2010 1 次提交
    • P
      python: Fix networkLookupByUUID · 2ef091ef
      Philip Hahn 提交于
      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
      +
      2ef091ef
  14. 12 3月, 2010 1 次提交
  15. 10 3月, 2010 1 次提交
  16. 19 1月, 2010 1 次提交
  17. 22 12月, 2009 1 次提交
  18. 24 9月, 2009 2 次提交
  19. 02 9月, 2009 1 次提交
  20. 24 7月, 2009 1 次提交
  21. 16 7月, 2009 1 次提交
    • P
      add cd and pwd commands to virsh · c4951f11
      Paolo Bonzini 提交于
      * 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
      c4951f11
  22. 02 7月, 2009 1 次提交
    • D
      Fix some missing parts in network code and schemas · 1e4434d6
      Daniel Veillard 提交于
      * 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
      1e4434d6
  23. 27 6月, 2009 1 次提交
    • D
      allow to create storage volumes on disk backend · fd90b67a
      Daniel Veillard 提交于
      * 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
      fd90b67a
  24. 25 6月, 2009 2 次提交
    • D
      fix UML driver logging macros · 9e080991
      Daniel Veillard 提交于
      * src/uml_driver.c: fix UML driver logging macros, patch by Amy Griffis
      * AUTHORS: adding Amy Griffis
      Daniel
      9e080991
    • D
      Fix a couple of state problems · d45242c6
      Daniel Veillard 提交于
      * 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
      d45242c6
  25. 11 6月, 2009 1 次提交
  26. 25 5月, 2009 1 次提交
    • D
      Include the OpenNebula driver · b811851b
      Daniel Veillard 提交于
      * 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
      b811851b
  27. 20 5月, 2009 1 次提交
    • D
      Add the Interface config APIs · 73bc0114
      Daniel Veillard 提交于
      * 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
      73bc0114
  28. 08 5月, 2009 1 次提交
  29. 24 4月, 2009 1 次提交
  30. 22 4月, 2009 1 次提交
  31. 16 4月, 2009 1 次提交
  32. 03 4月, 2009 1 次提交
    • D
      release of 0.6.2 · 8536e697
      Daniel Veillard 提交于
      * configure.in libvirt.spec.in NEWS docs/*: release of 0.6.2
      * po/*: Gujarati and Polish updates, rebuild
      * AUTHORS: add one missing
      Daniel
      8536e697
  33. 24 3月, 2009 1 次提交
  34. 20 3月, 2009 1 次提交
  35. 16 3月, 2009 1 次提交
  36. 04 3月, 2009 1 次提交
  37. 03 3月, 2009 1 次提交