forked from thewhiterabbit/Deploy_Saleor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.undeploy
261 lines (222 loc) · 7.69 KB
/
template.undeploy
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#########################################################################################
# undeploy.sh
# Author: Aaron K. Nall http://github.com/thewhiterabbit
#########################################################################################
#!/bin/sh
set -e
print_status() {
echo
echo "## $1"
echo
}
sudo systemctl stop saleor
wait
sudo ufw delete allow {gql_port}
sudo ufw delete allow {api_port}
wait
#########################################################################################
# Get the actual user that logged in
#########################################################################################
UN="$(who am i | awk '{print $1}')"
if [[ "$UN" != "root" ]]; then
HD="/home/$UN"
else
HD="/root"
fi
cd $HD
#########################################################################################
#########################################################################################
# Get the operating system
#########################################################################################
IN=$(uname -a)
arrIN=(${IN// / })
IN2=${arrIN[3]}
arrIN2=(${IN2//-/ })
OS=${arrIN2[1]}
#########################################################################################
#########################################################################################
# Parse options
#########################################################################################
while [ -n "$1" ]; do # while loop starts
case "$1" in
-name)
DEPLOYED_NAME="$2"
shift
;;
-host)
HOST="$2"
shift
;;
-dashboard-uri)
APP_MOUNT_URI="$2"
shift
;;
-static-url)
STATIC_URL="$2"
shift
;;
-media-url)
MEDIA_URL="$2"
shift
;;
# Gracefully remove database
-g)
if [ "$2" = "" ]; then
GRD="yes"
print_status "Graceful database removal selected."
else
GRD="$2"
fi
shift
;;
*)
echo "Option $1 is invalid."
echo "Exiting"
exit 1
;;
esac
shift
done
#########################################################################################
#########################################################################################
# Echo the detected operating system
#########################################################################################
print_status "$OS detected"
sleep 2
#########################################################################################
#########################################################################################
# Select/run Operating System specific commands
#########################################################################################
# Tested working on Ubuntu Server 20.04
# Needs testing on the distributions listed below:
# Debian
# Fedora CoreOS
# Kubernetes
# SUSE CaaS
print_status "Removing Saleor's core dependencies..."
sleep 1
case "$OS" in
Debian)
sudo apt-get --purge remove -y build-essential python3-dev python3-pip python3-cffi python3-venv gcc
wait
sudo apt-get --purge remove -y libcairo2 libpango-1.0-0 libpangocairo-1.0-0 libgdk-pixbuf2.0-0 libffi-dev shared-mime-info
wait
if [ "$GRD" != "yes" ]; then
sudo apt-get --purge remove -y postgresql*
wait
if [ -d "/var/lib/postgresql" ]; then
sudo rm -rf /var/lib/postgresql
fi
if [ -d "/var/log/postgresql" ]; then
sudo rm -rf /var/log/postgresql
fi
if [ -d "/etc/postgresql" ]; then
sudo rm -rf /etc/postgresql
fi
wait
fi
sudo apt autoremove -y
;;
Fedora)
;;
Kubernetes)
;;
SUSE)
;;
Ubuntu)
sudo apt-get --purge remove -y build-essential python3-dev python3-pip python3-cffi python3-venv gcc
wait
sudo apt-get --purge remove -y libcairo2 libpango-1.0-0 libpangocairo-1.0-0 libgdk-pixbuf2.0-0 libffi-dev shared-mime-info
wait
if [ "$GRD" != "yes" ]; then
sudo apt-get --purge remove -y postgresql*
wait
if [ -d "/var/lib/postgresql" ]; then
sudo rm -rf /var/lib/postgresql
fi
if [ -d "/var/log/postgresql" ]; then
sudo rm -rf /var/log/postgresql
fi
if [ -d "/etc/postgresql" ]; then
sudo rm -rf /etc/postgresql
fi
wait
fi
sudo apt autoremove -y
;;
*)
# Unsupported distribution detected, exit
echo "Unsupported Linix distribution detected."
echo "Exiting"
exit 1
;;
esac
#########################################################################################
#########################################################################################
# Tell the user what's happening
#########################################################################################
print_status "Finished purging core dependencies"
sleep 1
#########################################################################################
#########################################################################################
# Drop Saleor database and user - For future use
#########################################################################################
if [ "$GRD" = "yes" ]; then
print_status "Removing the database and database user gracefully..."
# Drop the role in the database and assign the generated password
sudo -i -u postgres psql -c "DROP ROLE {pgsqluser};"
wait
# Drop the database for Saleor
sudo -i -u postgres psql -c "DROP DATABASE {pgsqldbname};"
wait
fi
#########################################################################################
#########################################################################################
# Tell the user what's happening
#########################################################################################
print_status "Finished removing database"
sleep 1
print_status "Removing the saleor service..."
sleep 2
#########################################################################################
# Disable
sudo systemctl disable saleor.service
# Reload the daemon
sudo systemctl daemon-reload
if [ -f "/etc/systemd/system/saleor.service" ]; then
sudo rm /etc/systemd/system/saleor.service
fi
#########################################################################################
# Tell the user what's happening
#########################################################################################
print_status "Finished removing the saleor service"
sleep 1
print_status "Removing the saleor private key file..."
sleep 2
#########################################################################################
if [ -d "/etc/saleor" ]; then
sudo rm -R /etc/saleor
fi
if [ -d "$HD/env/saleor" ]; then
sudo rm -R $HD/env/saleor
fi
if [ -d "$HD/saleor" ]; then
sudo rm -R $HD/saleor
fi
if [ -d "$HD/saleor-dashboard" ]; then
sudo rm -R $HD/saleor-dashboard
fi
if [ -f "$HD/run/saleor.sock" ]; then
sudo rm $HD/run/saleor.sock
fi
if [ -f "/etc/nginx/sites-enabled/saleor" ]; then
sudo rm /etc/nginx/sites-enabled/saleor
fi
if [ -f "/etc/nginx/sites-available/saleor" ]; then
sudo rm /etc/nginx/sites-available/saleor
fi
if [ -d "/var/www/{host}" ]; then
sudo rm -R /var/www/{host}
{rm_app_host}
fi
print_status "Saleor has been undeployed!"