forked from littlebizzy/slickstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ss-install-adminer.txt
47 lines (34 loc) · 2.38 KB
/
ss-install-adminer.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
####################################################################################################
#### author: SlickStack ############################################################################
#### link: https://slickstack.io ###################################################################
#### mirror: http://mirrors.slickstack.io/ss-install-adminer.txt ###################################
#### path: /var/www/ss-install-adminer #############################################################
#### destination: n/a (not a boilerplate) ##########################################################
#### purpose: Reinstalls the Adminer (phpMyAdmin) module for database management (idempotent) ######
#### module version: Ubuntu 20.04 LTS + Adminer 4.7.7 ##############################################
####################################################################################################
## SS-CONFIG MUST BE PROPERLY CONFIGURED (AND CURRENT BUILD) BEFORE RUNNING SS-INSTALL ##
## ENSURE SS-CONFIG OPTIONS REMAIN CURRENT BY RUNNING SS-UPDATE OCCASIONALLY ##
## include SlickStack configuration ##
source /var/www/ss-config
## include SlickStack functions ##
source /var/www/ss-functions
####################################################################################################
#### SS-Install: Install Adminer (phpMyAdmin) ######################################################
####################################################################################################
## MESSAGE ##
echo -e "${LIGHTPURPLE}SS-INSTALL-ADMINER: Installing Adminer script for SQL database management...${NORMAL}"
## download latest versions ##
wget -O /tmp/adminer.php http://mirrors.slickstack.io/adminer/adminer.txt
## copy files to their destinations ##
cp /tmp/adminer.php /var/www/meta/adminer.php
## reset permissions ##
chown -R www-data:www-data /var/www/meta/adminer.php
chmod 0664 /var/www/meta/adminer.php
## add script to check Nginx server block for adminer location if not exist run ss-install-nginx ##
####################################################################################################
#### SlickStack: External References Used To Improve This Script (Thanks, Interwebz) ###############
####################################################################################################
## Ref: https://sourceforge.net/p/adminer/bugs-and-features/630/
## SS_EOF