Displaying 1 result from an estimated 1 matches for "start_ovirt".
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
...+++++++++++++++----------
scripts/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_ovir...