added unattended installs, and bumped golang ver
This commit is contained in:
19
scripts/unattended/mariadbinstall.sh
Normal file
19
scripts/unattended/mariadbinstall.sh
Normal file
@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env bash
|
||||
trap 'exit 130' INT
|
||||
apt update && apt upgrade -y
|
||||
sudo apt install wget software-properties-common dirmngr ca-certificates apt-transport-https mariadb-server mariadb-client -y
|
||||
echo -e "=================================================================="
|
||||
echo "Time to Configure MariaDB."
|
||||
echo "Don't Know what to do? I can help!"
|
||||
echo "1. Root password just click ENTER as there is no password"
|
||||
echo "2. Switch to unix_socket authentication select. n"
|
||||
echo "3. Change the root password? Y"
|
||||
echo "4. Remove anonymous users? Y "
|
||||
echo "5. Disallow root login remotely? y, But if it's local it's fine to say no."
|
||||
echo "6. Remove test database and access to it? Y"
|
||||
echo "7. Reload privilege tables now? Y"
|
||||
echo -e "=================================================================="
|
||||
sleep 5
|
||||
sudo mysql_secure_installation
|
||||
|
||||
echo "If you want to install phpMyAdmin run wget -O pmainstall.sh https://sop.wtf/sh/pmainstall && bash pmainstall.sh"
|
Reference in New Issue
Block a user