mirror of
https://github.com/MariaDB/server.git
synced 2026-04-24 09:15:30 +02:00
Bug#19298 mysqld_safe still uses obsolete --skip-locking parameter
configure.in: Replaced skip-locking with newer skip-external-locking option. Removed extra quotes. scripts/mysqld_safe-watch.sh: Replaced skip-locking with newer skip-external-locking option.
This commit is contained in:
parent
4a4ec6795d
commit
7b064953d2
2 changed files with 6 additions and 6 deletions
|
|
@ -93,10 +93,10 @@ do
|
|||
if test "$#" -eq 0
|
||||
then
|
||||
nohup $ledir/mysqld --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR \
|
||||
--skip-locking >> $err 2>&1 &
|
||||
--skip-external-locking >> $err 2>&1 &
|
||||
else
|
||||
nohup $ledir/mysqld --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR \
|
||||
--skip-locking "$@" >> $err 2>&1 &
|
||||
--skip-external-locking "$@" >> $err 2>&1 &
|
||||
fi
|
||||
pid=$!
|
||||
rm -f $lockfile
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue