Displaying 12 results from an estimated 12 matches for "stopdomain".
Did you mean:
topdomain
2009 Oct 29
1
[PATCH] Enables users to migrate virtual machines between hosts.
...id]
+
+def MigrateDomain():
+ screen = MigrateDomainConfigScreen()
+ screen.start()
diff --git a/nodeadmin/nodemenu.py b/nodeadmin/nodemenu.py
index 16be89c..f213e09 100755
--- a/nodeadmin/nodemenu.py
+++ b/nodeadmin/nodemenu.py
@@ -26,17 +26,19 @@ from startdomain import StartDomain
from stopdomain import StopDomain
from removedomain import RemoveDomain
from listdomains import ListDomains
+from migratedomain import MigrateDomain
from createuser import CreateUser
import utils
import logging
-ADD_DOMAIN = 1
-START_DOMAIN = 2
-STOP_DOMAIN = 3
-REMOVE_DOMAIN = 4
-LIST_...
2009 Oct 21
1
[PATCH node] Renamed files and menu items for node administration:
...--------------------------------------
nodeadmin/destroydomain.py | 66 ------
nodeadmin/listdomains.py | 4 +-
nodeadmin/nodemenu.py | 42 ++--
nodeadmin/removedomain.py | 83 ++++++++
nodeadmin/setup.py.in | 10 +-
nodeadmin/startdomain.py | 65 ++++++
nodeadmin/stopdomain.py | 66 ++++++
nodeadmin/undefinedomain.py | 83 --------
ovirt-node.spec.in | 18 +-
13 files changed, 725 insertions(+), 725 deletions(-)
create mode 100755 nodeadmin/adddomain.py
delete mode 100755 nodeadmin/createdomain.py
delete mode 100755 nodeadmin/definedomain.py
del...
2009 Nov 05
2
Rebased patches...
I've rebased these patches to ensure they're up to date.
2009 Oct 28
2
Refactoring of storage admin and node
This patch set supercedes the previous set, and incorporates feedback from jboggs.
There is a known issue in configuring volumes on an iSCSI pool that makes them
unsupported at the moment. This code functions identical to virt-manager in that
regard.
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 Dec 03
2
Refactored, fixed and ready to review...
This set of patches needed some reworking since they would not apply on top of
next. They are ready for review and to be pushed.
2010 Feb 23
1
More complete patch...
This patch supercedes the previous one by moving the functionality for
relocating files into the make system.
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.
...\
nodeadmin/mainmenu.py \
@@ -40,6 +44,7 @@ EXTRA_DIST = \
nodeadmin/netmenu.py \
nodeadmin/nodemenu.py \
nodeadmin/removedomain.py \
+ nodeadmin/removehost.py \
nodeadmin/undefinenetwork.py \
nodeadmin/startdomain.py \
nodeadmin/stopdomain.py \
diff --git a/nodeadmin/addhost.py b/nodeadmin/addhost.py
new file mode 100644
index 0000000..ef35b7d
--- /dev/null
+++ b/nodeadmin/addhost.py
@@ -0,0 +1,129 @@
+# addhost.py - Copyright (C) 2009 Red Hat, Inc.
+# Written by Darryl L. Pierce <dpierce at redhat.com>
+#
+# This program...
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.