[bacula/f17] Add missing killproc

Simone Caronni slaanesh at fedoraproject.org
Wed Jan 9 12:21:30 UTC 2013


commit 298780eb5f44a8e1fed6a9e3a58acc779490ef03
Author: Simone Caronni <negativo17 at gmail.com>
Date:   Wed Jan 9 13:21:02 2013 +0100

    Add missing killproc

 bacula-dir.init |    2 +-
 bacula-fd.init  |    2 +-
 bacula-sd.init  |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/bacula-dir.init b/bacula-dir.init
index d13cd98..4a802fb 100644
--- a/bacula-dir.init
+++ b/bacula-dir.init
@@ -52,7 +52,7 @@ start() {
 
 stop() {
     echo -n $"Stopping $prog: "
-    # stop it here, often "killproc $prog"
+    killproc $prog
     retval=$?
     echo
     [ $retval -eq 0 ] && rm -f $lockfile
diff --git a/bacula-fd.init b/bacula-fd.init
index 00b297e..e61ab41 100644
--- a/bacula-fd.init
+++ b/bacula-fd.init
@@ -50,7 +50,7 @@ start() {
 
 stop() {
     echo -n $"Stopping $prog: "
-    # stop it here, often "killproc $prog"
+    killproc $prog
     retval=$?
     echo
     [ $retval -eq 0 ] && rm -f $lockfile
diff --git a/bacula-sd.init b/bacula-sd.init
index 32f1773..e6ff9a8 100644
--- a/bacula-sd.init
+++ b/bacula-sd.init
@@ -50,7 +50,7 @@ start() {
 
 stop() {
     echo -n $"Stopping $prog: "
-    # stop it here, often "killproc $prog"
+    killproc $prog
     retval=$?
     echo
     [ $retval -eq 0 ] && rm -f $lockfile


More information about the scm-commits mailing list