search for: netmenu

Displaying 14 results from an estimated 14 matches for "netmenu".

Did you mean: getmenu
2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
...++++++++ nodeadmin/destroynetwork.py | 56 +++++++++ nodeadmin/halworker.py | 8 ++ nodeadmin/libvirtworker.py | 61 ++++++++++ nodeadmin/listnetworks.py | 55 +++++++++ nodeadmin/mainmenu.py | 71 ++++-------- nodeadmin/menuscreen.py | 57 ++++++++++ nodeadmin/netmenu.py | 58 ++++++++++ nodeadmin/networkconfig.py | 99 ++++++++++++++++ nodeadmin/nodemenu.py | 63 +++++++++++ nodeadmin/setup.py.in | 7 +- nodeadmin/undefinenetwork.py | 88 +++++++++++++++ ovirt-node.spec.in | 33 +++++- 17 files changed, 948 inserti...
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/destroynetwork.py \ nodeadmin/halworker.py \ + nodeadmin/hostconnect.py \ + nodeadmin/hostmenu.py \ nodeadmin/libvirtworker.py \ nodeadmin/userworker.py \ 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 1006...
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 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.
...\ nodeadmin/halworker.py \ nodeadmin/libvirtworker.py \ - nodeadmin/userworker.py \ + nodeadmin/listdomains.py \ + nodeadmin/listnetworks.py \ + nodeadmin/listpools.py \ nodeadmin/mainmenu.py \ nodeadmin/menuscreen.py \ nodeadmin/netmenu.py \ - nodeadmin/nodemenu.py \ - nodeadmin/undefinedomain.py \ - nodeadmin/undefinenetwork.py \ - nodeadmin/createdomain.py \ - nodeadmin/definedomain.py \ - nodeadmin/definenet.py \ - nodeadmin/domainconfig.py \ nodeadmin/networkconfig.py \ - no...
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.
2009 Oct 26
0
[PATCH node] Users can now work with remote libvirt hosts.
...result = [] diff --git a/nodeadmin/mainmenu.py b/nodeadmin/mainmenu.py index 73501fa..944ffeb 100755 --- a/nodeadmin/mainmenu.py +++ b/nodeadmin/mainmenu.py @@ -19,15 +19,17 @@ from snack import * import traceback -from menuscreen import MenuScreen -from nodemenu import NodeMenu -from netmenu import NetworkMenu +from menuscreen import MenuScreen +from nodemenu import NodeMenu +from netmenu import NetworkMenu +from hostmenu import HostMenu import utils import logging NODE_MENU = 1 NETWORK_MENU = 2 +HOST_MENU = 3 EXIT_CONSOLE = 99 class MainMenuScreen(MenuS...
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.
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 Oct 21
1
[PATCH node] Renamed files and menu items for node administration:
...\ nodeadmin/createnetwork.py \ nodeadmin/createuser.py \ - nodeadmin/destroydomain.py \ nodeadmin/destroynetwork.py \ nodeadmin/halworker.py \ nodeadmin/libvirtworker.py \ @@ -39,10 +39,10 @@ EXTRA_DIST = \ nodeadmin/menuscreen.py \ nodeadmin/netmenu.py \ nodeadmin/nodemenu.py \ - nodeadmin/undefinedomain.py \ + nodeadmin/removedomain.py \ nodeadmin/undefinenetwork.py \ - nodeadmin/createdomain.py \ - nodeadmin/definedomain.py \ + nodeadmin/startdomain.py \ + nodeadmin/stopdomain.py \ no...
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe. Removes old sub packages form ovirt-node, stateless, logos, selinux. Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221 Added License file.