Displaying 1 result from an estimated 1 matches for "start_ovirt_post".
2010 Mar 11
1
[PATCH] Changes the start/stop/reload method names for sysvinit scripts.
.../scripts/ovirt-post b/scripts/ovirt-post
index f53157a..d0d1d20 100755
--- a/scripts/ovirt-post
+++ b/scripts/ovirt-post
@@ -19,7 +19,7 @@ VAR_SUBSYS_OVIRT_POST=/var/lock/subsys/$prog
# load the configuration file
[ -f "$NODE_CONFIG" ] && . "$NODE_CONFIG"
-start() {
+start_ovirt_post() {
# wait for libvirt to finish initializing
local count=0
while true; do
@@ -80,11 +80,16 @@ start() {
rm -f $VAR_SUBSYS_OVIRT_POST
}
-stop() {
+stop_ovirt_post () {
echo -n "Stopping ovirt-post: "
success
}
+reload_ovirt_post () {
+ stop_ovirt_pos...