search for: ovirt_runtime_mode

Displaying 6 results from an estimated 6 matches for "ovirt_runtime_mode".

2010 Mar 10
2
[PATCH] Set KEYTAB_FILE=/etc/libvirt/krb5.tab in node-config
...-off-by: Arthur CLEMENT <aclement at linagora.com> --- scripts/node-config | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/scripts/node-config b/scripts/node-config index 47d42a1..0fa5735 100644 --- a/scripts/node-config +++ b/scripts/node-config @@ -12,4 +12,6 @@ OVIRT_RUNTIME_MODE="none" OVIRT_MANAGEMENT_SERVER="" # the maangement server port -OVIRT_MANAGEMENT_PORT="" \ No newline at end of file +OVIRT_MANAGEMENT_PORT="" + +# the keytab directory +KEYTAB_FILE=/etc/libvirt/krb5.tab -- 1.6.6.1 -- Arthur CLEMENT Linagora Paris
2010 Mar 16
1
[PATCH] ovirt-awake improvements
>From 1ca6e713d0c23279a6800e6dfb4a76ab4250f56f Mon Sep 17 00:00:00 2001 From: Arthur CLEMENT <aclement at linagora.com> Date: Tue, 16 Mar 2010 16:36:50 +0000 Subject: [PATCH] Function typo fixed. Move the sourcing of NODE_CONFIG forward to not override the $OVIRT_RUNTIME_MODE read from karg Signed-off-by: Arthur CLEMENT <aclement at linagora.com> --- scripts/ovirt-awake | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/ovirt-awake b/scripts/ovirt-awake index d5865c5..5126a54 100755 --- a/scripts/ovirt-awake +++ b/scripts/ovir...
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 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...++++++++++------ 5 files changed, 68 insertions(+), 29 deletions(-) diff --git a/scripts/ovirt b/scripts/ovirt index 752564a..ef00f02 100755 --- a/scripts/ovirt +++ b/scripts/ovirt @@ -71,7 +71,7 @@ ovirt_start() { fi } -start() { +start_ovirt () { touch $VAR_SUBSYS_OVIRT case $OVIRT_RUNTIME_MODE in "ovirt") @@ -90,18 +90,24 @@ start() { return $RC } -stop() { +stop_ovirt () { echo -n "Stopping ovirt: " + rm -f $VAR_SUBSYS_OVIRT success } +reload_ovirt () { + stop_ovirt + start_ovirt +} + case "$1" in start)...
2010 Mar 02
1
fc12 node partially working
Hi, I finally have a fc12 node partially working. I still have to override the kargs runtime_mode in ovirt-early (I want "ovirt" runtime mode): 368 runtime_mode*) 369 OVIRT_RUNTIME_MODE=${i#runtime_mode=} 370 #runtime_mode=${i#runtime_mode=} 371 ;; And I have to set manually the the broker for qpid : service libvirt-qpid stop (export QPID_TRACE=1) libvirt-qpid --broker "ovirt_url" The problem seems to come from /etc/init.d/ovirt : /etc...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...ev/null @@ -1,15 +0,0 @@ -# node configuration - -# defines the node's runtime mode, unless overridden -# on the kernel command line -# allowed values are: -# ovirt - managed by an oVirt management server -# none - standalone, unmamanged mode -# managed - managed by another server type -OVIRT_RUNTIME_MODE="none" - -# the management server hostname or address -OVIRT_MANAGEMENT_SERVER="" - -# the maangement server port -OVIRT_MANAGEMENT_PORT="" \ No newline at end of file diff --git a/scripts/ovirt b/scripts/ovirt index d8d52cc..eee827c 100755 --- a/scripts/ovirt +++ b/sc...