Skip to content
Snippets Groups Projects
Commit a9756f6b authored by Bob Mottram's avatar Bob Mottram
Browse files

Also check for successful mysql installation

parent b94090b8
No related branches found
No related tags found
No related merge requests found
......@@ -158,6 +158,11 @@ function install_mariadb {
exit 54
fi
if [ ! -f /usr/bin/mysql ]; then
echo $"ERROR: mariadb-server does not appear to have installed. $CHECK_MESSAGE"
exit 34672
fi
mysqladmin -u root password "$MARIADB_PASSWORD"
mark_completed $FUNCNAME
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment