diff options
author | tomas@poseidon.ndb.mysql.com <> | 2004-11-04 13:06:22 +0000 |
---|---|---|
committer | tomas@poseidon.ndb.mysql.com <> | 2004-11-04 13:06:22 +0000 |
commit | f5e5dfb2f779cbb5468d63d94d659fa3d6a17e8a (patch) | |
tree | 9075eeeffe64d9b572dcde1470b15406b4f68205 /mysql-test/ndb | |
parent | 21d86bda382e345e9cb58d04719553e53564abe0 (diff) | |
download | mariadb-git-f5e5dfb2f779cbb5468d63d94d659fa3d6a17e8a.tar.gz |
just do kill instead ok kill -9
Diffstat (limited to 'mysql-test/ndb')
-rw-r--r-- | mysql-test/ndb/ndbcluster.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/ndb/ndbcluster.sh b/mysql-test/ndb/ndbcluster.sh index 9d83a291f3d..d7b115d71b6 100644 --- a/mysql-test/ndb/ndbcluster.sh +++ b/mysql-test/ndb/ndbcluster.sh @@ -212,8 +212,8 @@ if [ -f "$fs_ndb/$pidfile" ] ; then attempt=`expr $attempt + 1` done if [ "$kill_pids" != "" ] ; then - echo "Failed to shutdown ndbcluster, executing kill -9 "$kill_pids - kill -9 $kill_pids + echo "Failed to shutdown ndbcluster, executing kill "$kill_pids + kill $kill_pids fi rm "$fs_ndb/$pidfile" fi |