mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
- better test for a string to avoid "test: integer expression expected"
if a variable is not defined (empty).
This commit is contained in:
@@ -128,7 +128,7 @@ fi
|
|||||||
|
|
||||||
if test ! -x $mysqld
|
if test ! -x $mysqld
|
||||||
then
|
then
|
||||||
if test "$in_rpm" -eq 1
|
if test "$in_rpm" = 1
|
||||||
then
|
then
|
||||||
echo "FATAL ERROR $mysqld not found!"
|
echo "FATAL ERROR $mysqld not found!"
|
||||||
exit 1
|
exit 1
|
||||||
@@ -167,7 +167,7 @@ then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$ip_only" -eq 1
|
if test "$ip_only" = 1
|
||||||
then
|
then
|
||||||
ip=`echo "$resolved" | awk '/ /{print $6}'`
|
ip=`echo "$resolved" | awk '/ /{print $6}'`
|
||||||
hostname=$ip
|
hostname=$ip
|
||||||
@@ -187,7 +187,7 @@ then
|
|||||||
c_d="yes"
|
c_d="yes"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test $verbose -eq 1
|
if test $verbose = 1
|
||||||
then
|
then
|
||||||
create_option="verbose"
|
create_option="verbose"
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user