[SCM] Samba Shared Repository - branch v3-0-test updated - release-3-0-32-92-g744c700

Karolin Seeger kseeger at samba.org
Mon Jan 5 14:00:12 GMT 2009


The branch, v3-0-test has been updated
       via  744c7007b4b798699613e06933f92fdf5261b222 (commit)
      from  74f5828112581fa230301f43f7685ec208a8e4f6 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-0-test


- Log -----------------------------------------------------------------
commit 744c7007b4b798699613e06933f92fdf5261b222
Author: Karolin Seeger <kseeger at samba.org>
Date:   Mon Jan 5 14:54:28 2009 +0100

    examples: Avoid bashism in perfcount.init.
    
    This fixes bug #6000.
    Thanks to the Debian Samba package maintainers for providing the patch!
    Remove trailing whitespaces.
    
    Karolin
    (cherry picked from commit 73875cd344608b591fa884ab99b5f3a10550c149)
    (cherry picked from commit e273c07e94ee607bbf05b6fa66cf3cea13fe4502)
    (cherry picked from commit a1bf1f1819ab184682327583d05b0258db8856ef)
    (cherry picked from commit b4ffffc5c03b69ac2f8e0ed74fd7788549f7e822)

-----------------------------------------------------------------------

Summary of changes:
 examples/perfcounter/perfcountd.init |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/examples/perfcounter/perfcountd.init b/examples/perfcounter/perfcountd.init
index bb4148e..7d151f6 100755
--- a/examples/perfcounter/perfcountd.init
+++ b/examples/perfcounter/perfcountd.init
@@ -22,15 +22,15 @@
 
 PATH=/bin:/usr/bin:/sbin:/usr/sbin
 
-killproc() 
+killproc()
 {
 	pid=`ps aux | grep $1 | egrep -v '(grep|perfcountd)' | awk '{print $2}'`
-	if [ "$pid" != "" ]; then
+	if [ -z "$pid" ]; then
 		kill $pid
 	fi
 }
 
-# Start/stop processes 
+# Start/stop processes
 
 case "$1" 
 in


-- 
Samba Shared Repository


More information about the samba-cvs mailing list