Move changes from test branch to upstream merge branch

This commit is contained in:
Sam
2025-01-08 00:08:31 +10:00
parent 060dad5633
commit 3bbbffb688
213 changed files with 1741 additions and 1315 deletions
+12 -16
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2024 tteck
# Copyright (c) 2021-2025 tteck
# Author: tteck
# Co-Author: MickLesk (Canbiz)
# License: MIT
@@ -22,8 +22,8 @@ $STD apt-get install -y \
curl \
gnupg \
mc \
openssh-server \
wget
wget \
openssh-server
msg_ok "Installed Dependencies"
RELEASE_REPO="mysql-8.0"
@@ -41,9 +41,7 @@ $STD apt-get update
export DEBIAN_FRONTEND=noninteractive
$STD apt-get install -y \
mysql-community-client \
mysql-community-server \
openssh-server \
wget
mysql-community-server
msg_ok "Installed MySQL"
msg_info "Configure MySQL Server"
@@ -58,16 +56,14 @@ read -r -p "Would you like to add PhpMyAdmin? <y/N> " prompt
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
msg_info "Installing phpMyAdmin"
$STD apt-get install -y \
apache2 \
php \
php-mysqli \
php-mbstring \
php-zip \
php-gd \
php-json \
php-curl \
openssh-server \
wget
apache2 \
php \
php-mysqli \
php-mbstring \
php-zip \
php-gd \
php-json \
php-curl
wget -q "https://files.phpmyadmin.net/phpMyAdmin/5.2.1/phpMyAdmin-5.2.1-all-languages.tar.gz"
mkdir -p /var/www/html/phpMyAdmin