Displaying 4 results from an estimated 4 matches for "var_subsys_ovirt".
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...ripts/ovirt-post | 16 ++++++++++------
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...
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.
..._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
"ovirt")
ovirt_start
;;
diff --git a/scripts/ovirt-awake b/scripts/ovirt-awake
index 55db140..938670a 100755
--- a/scripts/ovirt-awake
+++ b/scripts/ovirt-awake
@@ -33,7 +33,6 @@
. /etc/in...