Fix MariaDB installation option

fix-non-showing-inputs
Mike Hurley 2020-10-01 16:54:48 +00:00
parent aa9335ca01
commit faadcbdab0
1 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ read -p "Do you want to install MariaDB? Y/N " installdbserver
#Changes input to uppercase
sqliteormariadb=${installdbserver^}
if [ "installdbserver" = "M" ] || [ "$installdbserver" = "" ]; then
if [ "installdbserver" = "Y" ] || [ "$installdbserver" = "" ]; then
echo "========================================================="
echo "Installing MariaDB repository..."
#Add the MariaDB repository to yum
@ -282,4 +282,4 @@ if [ "$createSuperJson" = "Y" ]; then
echo "|| You can edit these settings in \"super.json\" ||"
echo "|| located in the Shinobi directory. ||"
echo "========================================================="
fi
fi