forked from littlebizzy/slickstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathss-install-adminer.txt
146 lines (111 loc) · 7.31 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/bin/bash
####################################################################################################
#### author: SlickStack ############################################################################
#### link: https://slickstack.io ###################################################################
#### mirror: https://mirrors.slickstack.io/bash/ss-install-adminer.txt #############################
#### path: /var/www/ss-install-adminer #############################################################
#### destination: n/a (not a boilerplate) ##########################################################
#### purpose: Reinstalls the entire Adminer module for SlickStack servers (idempotent) #############
#### module version: Adminer 4.8.1 #################################################################
#### sourced by: ss-install ########################################################################
#### bash aliases: ss install adminer, ss install phpmyadmin #######################################
####################################################################################################
## SS-CONFIG MUST BE PROPERLY CONFIGURED AND ON CURRENT BUILD BEFORE RUNNING SS-INSTALL ##
## ENSURE YOUR SS-CONFIG BUILD REMAINS CURRENT BY RUNNING SS-UPDATE OCCASIONALLY ##
## source ss-config ##
source /var/www/ss-config
## source ss-functions ##
source /var/www/ss-functions
## BELOW THIS RELIES ON SS-CONFIG AND SS-FUNCTIONS
####################################################################################################
#### TABLE OF CONTENTS (SS-Install-Adminer) ########################################################
####################################################################################################
## this is a brief summary of the different code snippets you will find in this script ##
## each section should be commented so you understand what is being accomplished ##
## A. Touch Timestamp File
## B. Interactive Lockdown Prompt
## C. Message (Begin Script)
## D. Install Adminer (phpMyAdmin)
## E. Reset Permissions (Adminer)
## F. Exit Script Per Feedback
####################################################################################################
#### A. SS-Install-Adminer: Touch Timestamp File ###################################################
####################################################################################################
## this is a dummy timestamp file that will remember the last time this script was run ##
## it can be useful for developer reference and is sometimes used by SlickStack ##
## script timestamp ##
ss_touch "${TIMESTAMP_SS_INSTALL_ADMINER}"
####################################################################################################
#### B. SS-Install-Adminer: Interactive Lockdown Prompt ############################################
####################################################################################################
## in case SS_LOCKDOWN is enabled this interactive prompt will ask before proceeding ##
## otherwise by default this script cannot run if lockdown is currently enabled ##
if [[ "${SS_LOCKDOWN}" == "true" ]]; then
read -r -p "Your SlickStack server has lockdown enabled, run ss-install-adminer anyways? [y/N]" response
fi
if [[ "$response" =~ ^([yY][eE][sS]|[yY])$ ]] || [[ "${SS_LOCKDOWN}" != "true" ]]
then
####################################################################################################
#### C. SS-Install-Adminer: Message (Begin Script) #################################################
####################################################################################################
## this is a simple message that announces to the shell the purpose of this bash script ##
## it will only be noticed by sudo users who manually call ss core bash scripts ##
## echo message ##
ss_echo "${COLOR_INFO}Running ss-install-adminer... ${COLOR_RESET}"
####################################################################################################
#### D. SS-Install-Adminer: Install Adminer (phpMyAdmin) ###########################################
####################################################################################################
## here we retrieve the latest version of adminer.php from our mirrors and install it ##
## note that adminer.php cannot be converted to UTF-8 or else it will break ##
## download latest versions ##
ss_wget "${TMP_ADMINER_PHP}" "${MIRROR_ADMINER_PHP}"
## validate temp adminer.php then install ##
VALIDATE_TMP_ADMINER_PHP=$(grep 'Jakub Vrana' "$TMP_ADMINER_PHP")
if [[ -n "$VALIDATE_TMP_ADMINER_PHP" ]]; then
ss_cp "${TMP_ADMINER_PHP}" "${PATH_ADMINER_PHP}"
else
ss_rm "${TMP_ADMINER_PHP}"
ss_wget "${TMP_ADMINER_PHP}" "${MIRROR2_ADMINER_PHP}"
ss_cp "${TMP_ADMINER_PHP}" "${PATH_ADMINER_PHP}"
fi
## validate path adminer.php and reinstall if needed ##
VALIDATE_PATH_ADMINER_PHP=$(grep 'Jakub Vrana' "$PATH_ADMINER_PHP")
if [[ -z "$VALIDATE_PATH_ADMINER_PHP" ]]; then
ss_rm "${TMP_ADMINER_PHP}"
ss_wget "${TMP_ADMINER_PHP}" "${MIRROR_ADMINER_PHP}"
ss_cp "${TMP_ADMINER_PHP}" "${PATH_ADMINER_PHP}"
fi
## delete tmp files ##
ss_rm "$TMP_ADMINER_PHP"
####################################################################################################
#### E. SS-Install-Adminer: Reset Permissions (Adminer) ############################################
####################################################################################################
## run ss-perms-adminer ##
source "${PATH_SS_PERMS_ADMINER}"
####################################################################################################
#### F. SS-Install-Adminer: Exit Script Per Feedback ###############################################
####################################################################################################
else
exit 1
fi
####################################################################################################
#### PLACEHOLDER: Reset Permissions (SlickStack Scripts) ###########################################
####################################################################################################
## we include this permissions reset in all cron jobs and bash scripts for redundancy ##
## chmod 0700 means only the root/sudo users can execute any SlickStack scripts ##
## THIS SNIPPET DOES NOT RELY ON SS-CONFIG OR SS-FUNCTIONS
## SNIPPET: ss bash scripts, ss cron jobs
## UPDATED: 02JUL2022
chown root:root /var/www/ss* ## must be root:root
chown root:root /var/www/crons/*cron* ## must be root:root
chown root:root /var/www/crons/custom/*cron* ## must be root:root
chmod 0700 /var/www/ss* ## 0700 means only root/sudo can execute
chmod 0700 /var/www/crons/*cron* ## 0700 means only root/sudo can execute
chmod 0700 /var/www/crons/custom/*cron* ## 0700 means only root/sudo can execute
####################################################################################################
#### SlickStack: External References Used To Improve This Script (Thanks, Interwebz) ###############
####################################################################################################
## Ref: https://sourceforge.net/p/adminer/bugs-and-features/630/
## Ref: https://github.com/littlebizzy/slickstack/issues/91
## Ref: https://stackoverflow.com/questions/226703/how-do-i-prompt-for-yes-no-cancel-input-in-a-linux-shell-script
## SS_EOF