Displaying 3 results from an estimated 3 matches for "ovirt_management_port".
2010 Mar 10
2
[PATCH] Set KEYTAB_FILE=/etc/libvirt/krb5.tab in node-config
...nged, 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 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.
...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/scripts/ovirt
@@ -87,7 +87,7 @@ ovirt_start() {
start() {
touch $VAR_SUBSYS_OVIRT
- case $OVIRT_RUNTIME_MODE in
+ case $NODE_RUNTIME_MODE in...