47 lines
2.0 KiB
Bash
47 lines
2.0 KiB
Bash
###Fetch Config
|
|
mrepo=https://git.bprieshof.nl/Work/Test-MySQL
|
|
mbranch=master
|
|
CurDebFrond="$DEBIAN_FRONTEND"
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
if [ -z ${PHPMyadmin+x} ]; then echo 'Error $PHPMyadmin is not set,, Setting default ' && PHPMyadmin=0;fi #check if Var is set
|
|
if [ -z ${phpmyadminver+x} ]; then echo 'Error $phpmyadminver is not set, Setting default' && phpmyadminver="4.9.2" ; fi #check if Var is set
|
|
|
|
wget -q -t7 "$repo"/raw/branch/"$branch"/config/MySQL/mysqld-V8.cnf
|
|
|
|
systemctl restart mysql
|
|
systemctl enable mysql
|
|
|
|
|
|
if [ $PHPMyadmin = 1 ]; then
|
|
mkdir -p /usr/share/phpmyadmin/
|
|
mkdir -p /etc/phpmyadmin
|
|
mkdir -p /var/lib/phpmyadmin/tmp/
|
|
wget -q -t7 https://files.phpmyadmin.net/phpMyAdmin/$phpmyadminver/phpMyAdmin-$phpmyadminver-all-languages.tar.gz
|
|
tar xzf phpMyAdmin-$phpmyadminver-all-languages.tar.gz
|
|
mv phpMyAdmin-$phpmyadminver-all-languages/* /usr/share/phpmyadmin
|
|
|
|
wget -q -t7 "$mrepo"/raw/branch/"$mbranch"/config/phpmyadmin/vendor_config.php -O /usr/share/phpmyadmin/libraries/vendor_config.php
|
|
wget -q -t7 "$mrepo"/raw/branch/"$mbranch"/config/phpmyadmin/config.footer.inc.php -O /etc/phpmyadmin/config.footer.inc.php
|
|
wget -q -t7 "$mrepo"/raw/branch/"$mbranch"/config/phpmyadmin/config.header.inc.php -O /etc/phpmyadmin/config.header.inc.php
|
|
wget -q -t7 "$mrepo"/raw/branch/"$mbranch"/config/phpmyadmin/config.inc.php -O /etc/phpmyadmin/config.inc.php
|
|
touch /var/lib/phpmyadmin/config.inc.php
|
|
touch /etc/phpmyadmin/config-db.php
|
|
|
|
chown -R www-data:www-data /var/lib/phpmyadmin/
|
|
|
|
blowsec=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
|
|
echo -e "<?php\n\n\$cfg['blowfish_secret'] = '$blowsec';\n\n?>" >> /var/lib/phpmyadmin/blowfish_secret.inc.php
|
|
|
|
mysql -u root --password="$password" < /usr/share/phpmyadmin/sql/create_tables.sql
|
|
fi
|
|
|
|
|
|
#Running Spesific WebPReconf
|
|
if curl --output /dev/null --silent --head --fail "$mrepo"/raw/branch/"$mbranch"/"$webserv"-conf.sh; then
|
|
source <(curl -s "$mrepo"/raw/branch/"$mbranch"/"$webserv"-conf.sh)
|
|
fi
|
|
|
|
export DEBIAN_FRONTEND=$CurDebFrond
|
|
unset mrepo
|
|
unset mbranch |