forked from Sophia/thelinuxlist
Update 'scripts/mariadbinstall.sh'
This commit is contained in:
@ -12,3 +12,13 @@ apt update && apt upgrade -y
|
|||||||
sudo apt install wget software-properties-common dirmngr ca-certificates apt-transport-https -y
|
sudo apt install wget software-properties-common dirmngr ca-certificates apt-transport-https -y
|
||||||
sudo apt install mariadb-server mariadb-client -y
|
sudo apt install mariadb-server mariadb-client -y
|
||||||
sudo mysql_secure_installation
|
sudo mysql_secure_installation
|
||||||
|
|
||||||
|
while [ "$go" != 'y' ] && [ "$go" != 'n' ]; do
|
||||||
|
read -p "Would you also like to install phpMyAdmin? (y/n) " go
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ "$go" == 'n' ]; then
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
wget -O pmainstall.sh https://sop.wtf/sh/pmainstall && bash pmainstall.sh
|
Reference in New Issue
Block a user