Displaying 4 results from an estimated 4 matches for "23c4f6e".
Did you mean:
18c4f6e
2010 Feb 23
1
[PATCH] Typo in ovirt-early
...000
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,8 +474,8 @@ start() {
-e "s/^mech_list: .*gssapi.*/mech_list: digest-md5/" \
/etc/sasl2/libvirt.conf
else
- configure_manament_interface
- fi
+ configure_management_i...
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 23
1
More complete patch...
This patch supercedes the previous one by moving the functionality for
relocating files into the make system.
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...# log "Starting ovirt-awake."
- case "$OVIRT_RUNTIME_MODE" in
+ case "$NODE_RUNTIME_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")...