Displaying 11 results from an estimated 11 matches for "ba07605".
2009 Oct 26
0
[PATCH node] Users can now work with remote libvirt hosts.
...(self, item):
+ if item is SELECT_HOST: ChangeHost()
+ elif item is ADD_HOST: AddHost()
+ elif item is REMOVE_HOST: RemoveHost()
+
+def HostMenu():
+ screen = HostMenuScreen()
+ screen.start()
diff --git a/nodeadmin/libvirtworker.py b/nodeadmin/libvirtworker.py
index ba07605..9963f1d 100644
--- a/nodeadmin/libvirtworker.py
+++ b/nodeadmin/libvirtworker.py
@@ -21,20 +21,64 @@ import libvirt
import os
import virtinst
import utils
+import logging
+
+import gconf
from domainconfig import DomainConfig
DEFAULT_POOL_TARGET_PATH="/var/lib/libvirt/images"
+DE...
2009 Dec 03
1
Rebased against next...
This set of patches have been rebased since the originals have grown stale.
2009 Nov 11
1
Combined patch set for migration...
This patch set includes both the host configuration patch and the
node migration patch which depends on it. And the latter has a fix
for missing files.
2009 Oct 28
1
[PATCH] Users can now work with remote libvirt hosts.
...(self, item):
+ if item is SELECT_HOST: ChangeHost()
+ elif item is ADD_HOST: AddHost()
+ elif item is REMOVE_HOST: RemoveHost()
+
+def HostMenu():
+ screen = HostMenuScreen()
+ screen.start()
diff --git a/nodeadmin/libvirtworker.py b/nodeadmin/libvirtworker.py
index ba07605..2998486 100644
--- a/nodeadmin/libvirtworker.py
+++ b/nodeadmin/libvirtworker.py
@@ -21,20 +21,69 @@ import libvirt
import os
import virtinst
import utils
+import logging
from domainconfig import DomainConfig
DEFAULT_POOL_TARGET_PATH="/var/lib/libvirt/images"
+DEFAULT_URL="...
2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
..."org.freedesktop.Hal", udi)
+ info = dbus.Interface(device, "org.freedesktop.Hal.Device")
+ result.append(info.GetProperty("net.interface"))
+ return result
diff --git a/nodeadmin/libvirtworker.py b/nodeadmin/libvirtworker.py
index adaea16..ba07605 100644
--- a/nodeadmin/libvirtworker.py
+++ b/nodeadmin/libvirtworker.py
@@ -73,6 +73,67 @@ class LibvirtWorker:
domain = self.get_domain(name)
domain.undefine()
+ def list_networks(self, defined = True, started = True):
+ '''Lists all networks.''...
2009 Oct 12
1
First draft: node storage admin
This patch provides the ability to create a "dir" type storage pool, and to add
and remove volumes for existing pools.
2009 Oct 27
1
Storage admin patches
This set of patches supercedes the previous set, and has been rebased
with changes from upstream.
2009 Nov 09
1
Rebased again...
This patch again rebases on upstream and should apply on next as of right now.
2009 Dec 08
2
Rebased patches, fixed a rebasing problem...
The previous patch set had an error and one development branch's changes
showed up twice, and two different change sets. So it was missing the bulk
of the configuration work. This patch set fixes that.
2009 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
...E:
- self.get_libvirt().define_domain(self.__config, DummyMeter())
+ self.get_libvirt().define_domain(self.__config, CreateMeter())
self.set_finished()
def get_back_page(self, page):
diff --git a/nodeadmin/libvirtworker.py b/nodeadmin/libvirtworker.py
index ba07605..b2acabe 100644
--- a/nodeadmin/libvirtworker.py
+++ b/nodeadmin/libvirtworker.py
@@ -35,6 +35,10 @@ class LibvirtWorker:
self.__net.setup(self.__conn)
(self.__new_guest, self.__new_domain) = virtinst.CapabilitiesParser.guest_lookup(conn = self.__conn)
+ def get_connection(se...
2009 Oct 21
1
Storage administration and refactoring of domain admin
This pair of patches provide a new storage admin interface. Then, on top of that,
it refactors the domain administration pieces to now properly use storage pools
and volumes when defining a new VM.