Commit d31e4636 authored by Timothy Smith's avatar Timothy Smith

Bug#48086: mysql_secure_installation does NOT work on Solaris

Remove a bash-ism (if ! ...).
parent 141e7961
...@@ -98,9 +98,7 @@ set_root_password() { ...@@ -98,9 +98,7 @@ set_root_password() {
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "Password updated successfully!" echo "Password updated successfully!"
echo "Reloading privilege tables.." echo "Reloading privilege tables.."
if ! reload_privilege_tables; then reload_privilege_tables || exit 1
exit 1
fi
echo echo
rootpass=$password1 rootpass=$password1
make_config make_config
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment