search for: menuscreen

Displaying 17 results from an estimated 17 matches for "menuscreen".

2009 Oct 26
0
[PATCH node] Users can now work with remote libvirt hosts.
...Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301, USA. A copy of the GNU General Public License is +# also available at http://www.gnu.org/copyleft/gpl.html. + +from snack import * + +from menuscreen import MenuScreen +from changehost import ChangeHost +from addhost import AddHost +from removehost import RemoveHost + +SELECT_HOST = 1 +ADD_HOST = 2 +REMOVE_HOST = 3 + +class HostMenuScreen(MenuScreen): + def __init__(self): + MenuScreen.__init__(self, "Host Menu Screen")...
2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
...| 255 ++++++++++++++++++++++++++++++++++++++++++ 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...
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.
...Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301, USA. A copy of the GNU General Public License is +# also available at http://www.gnu.org/copyleft/gpl.html. + +from snack import * + +from menuscreen import MenuScreen +from changehost import ChangeHost +from addhost import AddHost +from removehost import RemoveHost + +SELECT_HOST = 1 +ADD_HOST = 2 +REMOVE_HOST = 3 + +class HostMenuScreen(MenuScreen): + def __init__(self): + MenuScreen.__init__(self, "Host Menu Screen")...
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 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 Mar 11
2
Problems booting Samsung NC20 netbook with pxelinux
Hi, I'm trying to a boot a Samsung NC20 netbook (VIA Nano CPU, VX800 chipset) via pxelinux, using the files from the netboot.tar.gz Debian installer. The last file tftp loads is vesamenu.c32, after that the notebook just reboots. I can see no error message, and no menuscreen. I also haven't used pxelinux before, so I even don't know what I am supposed to see :-) Any idea what is wrong, or any advice how to find out what exactly is causing the problem? Thanks in advance for any help, - Dirk
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 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
...py \ + nodeadmin/domainconfig.py \ 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 \ nodea...
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 29
1
[PATCH] Enables users to migrate virtual machines between hosts.
...import utils import logging -ADD_DOMAIN = 1 -START_DOMAIN = 2 -STOP_DOMAIN = 3 -REMOVE_DOMAIN = 4 -LIST_DOMAINS = 5 -CREATE_USER = 6 +ADD_DOMAIN = 1 +START_DOMAIN = 2 +STOP_DOMAIN = 3 +REMOVE_DOMAIN = 4 +LIST_DOMAINS = 5 +MIGRATE_DOMAIN = 6 +CREATE_USER = 7 class NodeMenuScreen(MenuScreen): def __init__(self): @@ -48,15 +50,17 @@ class NodeMenuScreen(MenuScreen): ("Stop A Virtual Machine", STOP_DOMAIN), ("Remove A Virtual Machine", REMOVE_DOMAIN), ("List All Virtual Machines", LIST_D...
2009 Nov 05
2
Rebased patches...
I've rebased these patches to ensure they're up to date.
2009 Oct 21
1
[PATCH node] Renamed files and menu items for node administration:
...\ nodeadmin/configscreen.py \ 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 \ + nodea...
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 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.