search for: networkconfig

Displaying 15 results from an estimated 15 matches for "networkconfig".

2009 Sep 23
2
[PATCH node] Introduces the virtual network administration functions.
...+++++++ 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 insertions(+), 62 deletions(-) create mode 100644 nodeadmin/...
2009 Oct 26
0
[PATCH node] Users can now work with remote libvirt hosts.
...diff --git a/nodeadmin/definenet.py b/nodeadmin/definenet.py index 4aa37d5..6dff18f 100644 --- a/nodeadmin/definenet.py +++ b/nodeadmin/definenet.py @@ -20,6 +20,7 @@ from snack import * from IPy import IP import traceback import logging +import re from configscreen import ConfigScreen from networkconfig import NetworkConfig diff --git a/nodeadmin/hostconnect.py b/nodeadmin/hostconnect.py new file mode 100644 index 0000000..a1be569 --- /dev/null +++ b/nodeadmin/hostconnect.py @@ -0,0 +1,29 @@ +# hostconnect.py - Copyright (C) 2009 Red Hat, Inc. +# Written by Darryl L. Pierce <dpierce at redhat.c...
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.
...diff --git a/nodeadmin/definenet.py b/nodeadmin/definenet.py index 4aa37d5..6dff18f 100644 --- a/nodeadmin/definenet.py +++ b/nodeadmin/definenet.py @@ -20,6 +20,7 @@ from snack import * from IPy import IP import traceback import logging +import re from configscreen import ConfigScreen from networkconfig import NetworkConfig diff --git a/nodeadmin/hostconnect.py b/nodeadmin/hostconnect.py new file mode 100644 index 0000000..a1be569 --- /dev/null +++ b/nodeadmin/hostconnect.py @@ -0,0 +1,29 @@ +# hostconnect.py - Copyright (C) 2009 Red Hat, Inc. +# Written by Darryl L. Pierce <dpierce at redhat.c...
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.
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
0
[PATCH node] Provides a new storage administration system to the managed node.
...\ 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 \ - nodeadmin/listdomains.py \ - nodeadmin/listnetworks.py \ nodeadmin/nodeadmin.py \ + nodeadmin/nodemenu.py \ + nodeadmin/poolconfig.py \ + nodeadmin/removepool.py \ + nodeadmin/removevolume.py \ nodeadmin/setup.py \ + nodeadmi...
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 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 13
2
Mac R spinning wheel with Package Manager (PR#14005)
...s/MacOS/SystemUIServer ADDRESS BINARY 00001000 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer 0006a000 /System/Library/PrivateFrameworks/SystemUIPlugin.framework/Versions/A/SystemUIPlugin 00078000 /System/Library/PrivateFrameworks/NetworkConfig.framework/Versions/A/NetworkConfig 000cc000 /System/Library/PrivateFrameworks/ICANotifications.framework/Versions/A/ICANotifications 000f6000 /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod 00101000 /System/Library/PrivateFrameworks/BezelServices.framewor...
2009 Oct 21
1
[PATCH node] Renamed files and menu items for node administration:
...py \ + nodeadmin/removedomain.py \ nodeadmin/undefinenetwork.py \ - nodeadmin/createdomain.py \ - nodeadmin/definedomain.py \ + nodeadmin/startdomain.py \ + nodeadmin/stopdomain.py \ nodeadmin/definenet.py \ nodeadmin/domainconfig.py \ nodeadmin/networkconfig.py \ diff --git a/nodeadmin/adddomain.py b/nodeadmin/adddomain.py new file mode 100755 index 0000000..70a2011 --- /dev/null +++ b/nodeadmin/adddomain.py @@ -0,0 +1,470 @@ +#!/usr/bin/env python +# +# adddomain.py - Copyright (C) 2009 Red Hat, Inc. +# Written by Darryl L. Pierce <dpierce at re...
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.