mirror of https://github.com/tteck/Proxmox.git
Update mariadb-install.sh
Make installing Adminer an option
This commit is contained in:
parent
94b7ef3ebb
commit
46d83226f8
|
@ -79,11 +79,21 @@ apt-get update >/dev/null
|
|||
apt-get install -y mariadb-server &>/dev/null
|
||||
msg_ok "Installed MariaDB"
|
||||
|
||||
read -r -p "Would you like to add Adminer? <y/N> " prompt
|
||||
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]
|
||||
then
|
||||
ADMINER="Y"
|
||||
else
|
||||
ADMINER="N"
|
||||
fi
|
||||
|
||||
if [[ $ADMINER == "Y" ]]; then
|
||||
msg_info "Installing Adminer"
|
||||
sudo apt install adminer -y &>/dev/null
|
||||
sudo a2enconf adminer &>/dev/null
|
||||
sudo systemctl reload apache2 &>/dev/null
|
||||
msg_ok "Installed Adminer"
|
||||
fi
|
||||
|
||||
PASS=$(grep -w "root" /etc/shadow | cut -b6);
|
||||
if [[ $PASS != $ ]]; then
|
||||
|
@ -106,7 +116,4 @@ msg_ok "Customized Container"
|
|||
msg_info "Cleaning up"
|
||||
apt-get autoremove >/dev/null
|
||||
apt-get autoclean >/dev/null
|
||||
rm -rf /var/{cache,log}/* /var/lib/apt/lists/*
|
||||
mkdir /var/log/apache2
|
||||
chmod 750 /var/log/apache2
|
||||
msg_ok "Cleaned"
|
||||
|
|
Loading…
Reference in New Issue