diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-11-04 13:06:22 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-11-04 13:06:22 +0000 |
commit | c9a75ccf1acfc4578496a1606fcf009301366997 (patch) | |
tree | 9075eeeffe64d9b572dcde1470b15406b4f68205 /mysql-test/ndb | |
parent | 9b26e1316e7acb5b20f2731af92c3762e3663e75 (diff) | |
download | mariadb-git-c9a75ccf1acfc4578496a1606fcf009301366997.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 |