From: Karolin Seeger Date: Mon, 5 Jan 2009 15:35:50 +0000 (+0100) Subject: Revert "examples: Avoid bashism in perfcount.init." X-Git-Tag: samba-3.3.0~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7d2e48c6e79983928c126e6d2d9fa3f295a765e;p=thirdparty%2Fsamba.git Revert "examples: Avoid bashism in perfcount.init." This reverts commit a1bf1f1819ab184682327583d05b0258db8856ef. --- diff --git a/examples/perfcounter/perfcountd.init b/examples/perfcounter/perfcountd.init index 8a89fad2b51..683e91395b1 100755 --- a/examples/perfcounter/perfcountd.init +++ b/examples/perfcounter/perfcountd.init @@ -21,15 +21,15 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin -killproc() +killproc() { pid=`ps aux | grep $1 | egrep -v '(grep|perfcountd)' | awk '{print $2}'` - if [ -z "$pid" ]; then + if [ "$pid" != "" ]; then kill $pid fi } -# Start/stop processes +# Start/stop processes case "$1" in