search for: configure_management_interfac

Displaying 5 results from an estimated 5 matches for "configure_management_interfac".

2010 Feb 23
1
[PATCH] Typo in ovirt-early
...3.d/S51ovirt-early: line 477: configure_manament_interface: command not found >From 92c2d705007644fad52f839a5272ab5332d707fa Mon Sep 17 00:00:00 2001 From: Arthur CLEMENT <aclement at linagora.com> Date: Tue, 23 Feb 2010 13:44:30 +0000 Subject: [PATCH node] Fixed typo in ovirt-early (configure_management_interface) Signed-off-by: Arthur CLEMENT <aclement at linagora.com> --- scripts/ovirt-early | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 23c4f6e..69cfa3e 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -474...
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...awake + ;; + + reload) + reload_ovirt_awake + ;; + *) echo "Usage: $0 start" RETVAL=2 diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 1ab0578..88070e3 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -172,7 +172,7 @@ configure_management_interface() { esac } -start() { +start_ovirt_early () { touch $VAR_SUBSYS_OVIRT_EARLY # oVirt boot parameters # BOOTIF=link|eth*|<MAC> (appended by pxelinux) @@ -511,18 +511,23 @@ EOF return 0 } -stop() { +stop_ovirt_early () { echo -n "Stopping ovirt-early:...
2010 Feb 23
1
More complete patch...
This patch supercedes the previous one by moving the functionality for relocating files into the make system.
2010 Feb 10
1
RFC: First pass at making the node generic...
I'm looking for feedback on this first patch. The node has been pushed towards a more generic boot process. With this patch the node can now boot up and execute a few specifically-named scripts that reside in /etc/node.d/ at key points during the startup. After this goes upstream, the next step will be to define in more detail the remote interfaces for the "managed" runtime
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...ME_MODE" in "none") log "Node is operating in unmanaged mode." ;; diff --git a/scripts/ovirt-early b/scripts/ovirt-early index 23c4f6e..2db0e76 100755 --- a/scripts/ovirt-early +++ b/scripts/ovirt-early @@ -143,7 +143,7 @@ find_disk() { configure_management_interface() { log "Configuring the manangement interface." - case $OVIRT_RUNTIME_MODE in + case $NODE_RUNTIME_MODE in "ovirt") configure_ovirt_management_nic $bootif if [ -n "$init" ]; then @@ -160,9 +160,9 @@ configure_management_i...