diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2004-11-03 14:34:21 +0000 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2004-11-03 14:34:21 +0000 |
commit | 735be56379f1c4b79c73caef6d581f72d820b00a (patch) | |
tree | ab2035fad329452fcb915d08f9b1eaed3d69f396 /mysql-test/ndb | |
parent | 269c977aae168ca9645cd5a806acd69067210f3f (diff) | |
download | mariadb-git-735be56379f1c4b79c73caef6d581f72d820b00a.tar.gz |
changed to use the future-proof option to ndb_mgmd
there was a clash in using -c, added -f as the future proof switch
mysql-test/ndb/ndbcluster.sh:
changed to use the future-proof option to ndb_mgmd
ndb/src/mgmsrv/main.cpp:
there was a clash in using -c, added -f as the future proof switch
Diffstat (limited to 'mysql-test/ndb')
-rw-r--r-- | mysql-test/ndb/ndbcluster.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/ndb/ndbcluster.sh b/mysql-test/ndb/ndbcluster.sh index 294d32ac4be..9d83a291f3d 100644 --- a/mysql-test/ndb/ndbcluster.sh +++ b/mysql-test/ndb/ndbcluster.sh @@ -146,7 +146,7 @@ fi rm -f "$cfgfile" 2>&1 | cat > /dev/null rm -f "$fs_ndb/$cfgfile" 2>&1 | cat > /dev/null -if ( cd "$fs_ndb" ; $exec_mgmtsrvr -c config.ini ) ; then :; else +if ( cd "$fs_ndb" ; $exec_mgmtsrvr -f config.ini ) ; then :; else echo "Unable to start $exec_mgmtsrvr from `pwd`" exit 1 fi |