mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
Bug#48086: mysql_secure_installation does NOT work on Solaris
Remove a bash-ism (if ! ...).
This commit is contained in:
parent
141e796163
commit
d31e4636b6
1 changed files with 1 additions and 3 deletions
|
@ -98,9 +98,7 @@ set_root_password() {
|
|||
if [ $? -eq 0 ]; then
|
||||
echo "Password updated successfully!"
|
||||
echo "Reloading privilege tables.."
|
||||
if ! reload_privilege_tables; then
|
||||
exit 1
|
||||
fi
|
||||
reload_privilege_tables || exit 1
|
||||
echo
|
||||
rootpass=$password1
|
||||
make_config
|
||||
|
|
Loading…
Add table
Reference in a new issue