-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrun.sh
executable file
·416 lines (399 loc) · 10.5 KB
/
run.sh
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
#!/bin/bash
#
# Copyright Steem FOSSbot under GNU GLP v3
#
#
# voter-docker
# A docker deployment management script for SteemFOSSbot Voter,
# based completely on @shaunmza 's tutorial post:
# https://steemit.com/bots/@shaunmza/dockerizing-the-steem-fossbot
#
# Script and support written by thrize AKA @personz
#
#
# Code modified from steem-docker on 4th March 2017, originally copyright Someguy123
#
# Original copyright message reads:
# Steem node manager
# Released under GNU AGPL by Someguy123
#
# ----------------------------------------
#
# DEVELOPMENT VERSION
#
# Note this should be executed
# git submodule add -b docker-develop https://github.com/Steem-FOSSbot/steem-fossbot-voter.git
BOLD="$(tput bold)"
RED="$(tput setaf 1)"
GREEN="$(tput setaf 2)"
YELLOW="$(tput setaf 3)"
BLUE="$(tput setaf 4)"
MAGENTA="$(tput setaf 5)"
CYAN="$(tput setaf 6)"
WHITE="$(tput setaf 7)"
RESET="$(tput sgr0)"
help() {
echo $CYAN"Usage: $0 COMMAND"
echo
echo $CYAN"Commands: "
echo $CYAN" setup - first time set up"
echo $YELLOW" must run setup as root, e.g. with sudo"
echo $CYAN" update - update Voter code, keeping setup settings"
echo $CYAN" build - (re)builds docker"
echo $CYAN" start - starts Voter in docker container"
echo $CYAN" bgstart - starts Voter in docker container in background process"
echo $CYAN" bgstop - stops docker container, use if started with bgstart"
echo $CYAN" logs - shows logs, use if started with bgstart"
echo $RESET
exit
}
setup() {
if [ "$EUID" -ne 0 ]
then echo $RED"Please run as root"
echo $RESET
exit
fi
if ! git_loc="$(type -p "git")" || [ -z "$git_loc" ]; then
echo $RED"git not installed, setup cannot run!"
echo $YELLOW"Please install git"
echo $RESET
exit
fi
if ! dc_loc="$(type -p "docker-compose")" || [ -z "$dc_loc" ]; then
echo $RED"docker-compose is not installed, setup cannot run!"
echo $YELLOW"install docker-compose and then start again"
echo $RESET
exit
fi
git submodule init
# if submodule repo already exists, make sure to stash any previous changes
if [ -d "steem-fossbot-voter" ]; then
cd steem-fossbot-voter
fileexists="n"
# check previous setup files exist
if [ -e "Dockerfile" ]; then
fileexists="Y"
fi
if [ -e "bot.sh" ]; then
fileexists="Y"
fi
if [ -e "crontab" ]; then
fileexists="Y"
fi
if [[ $fileexists == "Y" ]]
then
# check that user wants to continue to wipe any changes made to repo and update submodule
echo
echo $YELLOW"Continuing will remove any --code-- changes you made to the local copy of Voter"
echo $YELLOW" NOTE that this does not include your algorithm or config, code changes only"
echo
echo $YELLOW"For normal usage this is safe"
while true; do
echo -n $CYAN"Continue? (Y/n):"
read answer
if [[ -z "$answer" ]]
then
echo $RED"Please answer the question"
echo
else
if [[ $answer == "n" ]]
then
echo
echo $YELLOW"Please do something with your changes, such as stashing them,"
echo $YELLOW"and then start config again"
echo $RESET
cd ..
exit
fi
if [[ $answer == "Y" ]]
then
echo $YELLOW
rm Dockerfile
rm bot.sh
rm crontab
break
fi
echo $RED"Please answer the question"
echo
fi
done
fi
echo $GREEN"Updating Voter code..."
echo $CYAN
git reset --hard
echo $CYAN"steem-fossbot-voter submodule changes have been reset, if any"
cd ..
else
echo $GREEN"Updating Voter code..."
fi
# update everything
git submodule update --remote
echo
echo $GREEN"Running Voter docker config..."
echo
chmod +x ./steem-fossbot-voter/docker-config.sh
chmod 755 ./steem-fossbot-voter/docker-config.sh
cd steem-fossbot-voter
echo $RESET
./docker-config.sh
cd ..
echo $GREEN"Voter docker config finished!"
echo
echo $YELLOW"Do you want to build the Docker deployment now?"
while true; do
echo -n $CYAN"Build? (Y/n):"
read answer
if [[ -z "$answer" ]]
then
echo $RED"Please answer the question"
echo
else
if [[ $answer == "n" ]]
then
echo
echo $CYAN"Please run ./run.sh build to create Docker deployment from set up files"
break
fi
if [[ $answer == "Y" ]]
then
echo $RESET
echo $RESET
docker-compose build
echo $GREEN"Assuming no errors, Voter is now bulid as a Docker deployment"
echo $CYAN"Use the start or bgstart commands to start the container"
break
fi
echo $RED"Please answer the question"
echo
fi
done
echo $RESET
}
update() {
if [ "$EUID" -ne 0 ]
then echo $RED"Please run as root"
echo $RESET
exit
fi
if ! git_loc="$(type -p "git")" || [ -z "$git_loc" ]; then
echo $RED"git not installed, update cannot run!"
echo $YELLOW"Please install git"
echo $RESET
exit
fi
if ! dc_loc="$(type -p "docker-compose")" || [ -z "$dc_loc" ]; then
echo $RED"docker-compose is not installed, update cannot run!"
echo $YELLOW"install docker-compose and then start again"
echo $RESET
exit
fi
# check Voter code folder exists
if ! [ -d "steem-fossbot-voter" ]; then
echo $RED"steem-fossbot-voter is not initialized, update cannot run!"
echo $YELLOW"run ./run.sh setup instead"
echo $RESET
exit
fi
cd steem-fossbot-voter
# check files exist
if ! [ -e "Dockerfile" ]; then
echo $RED"steem-fossbot-voter integrety issue (missing Dockerfile), update cannot run!"
echo $YELLOW"run ./run.sh setup instead"
echo $RESET
exit
fi
if ! [ -e "bot.sh" ]; then
echo $RED"steem-fossbot-voter integrety issue (missing bot.sh), update cannot run!"
echo $YELLOW"run ./run.sh setup instead"
echo $RESET
exit
fi
if ! [ -e "crontab" ]; then
echo $RED"steem-fossbot-voter integrety issue (missing crontab), update cannot run!"
echo $YELLOW"run ./run.sh setup instead"
echo $RESET
exit
fi
# copy files
echo $CYAN"copying setup files..."
echo $RED
cp Dockerfile ../Dockerfile_temp
cp bot.sh ../bot_temp.sh
cp crontab ../crontab_temp
echo $YELLOW
rm Dockerfile
rm bot.sh
rm crontab
echo $CYAN"updating Voter code..."
git reset --hard
cd ..
git submodule init
git submodule update --remote
echo $CYAN"restoring setup files..."
cp Dockerfile_temp steem-fossbot-voter/Dockerfile
cp bot_temp.sh steem-fossbot-voter/bot.sh
cp crontab_temp steem-fossbot-voter/crontab
rm Dockerfile_temp
rm bot_temp.sh
rm crontab_temp
echo $GREEN"Voter docker update finished!"
echo
echo $YELLOW"Do you want to build the Docker deployment now?"
while true; do
echo -n $CYAN"Build? (Y/n):"
read steemusername
if [[ -z "$steemusername" ]]
then
echo $RED"Please answer the question"
echo
else
if [[ $steemusername == "n" ]]
then
echo
echo $CYAN"Please run ./run.sh build to create Docker deployment from set up files"
break
fi
if [[ $steemusername == "Y" ]]
then
echo $RESET
echo $RESET
docker-compose build
echo $GREEN"Assuming no errors, Voter is now bulid as a Docker deployment"
echo $CYAN"Use the start or bgstart commands to start the container"
break
fi
echo $RED"Please answer the question"
echo
fi
done
echo $RESET
}
build() {
if [ "$EUID" -ne 0 ]
then
echo $GREEN"Build..."
else
echo $RED"Do not run as root, don't use sudo or su"
echo $RESET
exit
fi
if ! dc_loc="$(type -p "docker-compose")" || [ -z "$dc_loc" ]; then
echo $RED"docker-compose is not installed"
echo $YELLOW"install docker-compose and then start again"
fi
echo $RESET
docker-compose build
echo $GREEN"Assuming no errors, Voter is now bulid as a Docker deployment"
echo $CYAN"Use the start or bgstart commands to start the container"
echo $RESET
exit
}
start() {
if [ "$EUID" -ne 0 ]
then
echo $GREEN"Start..."
else
echo $RED"Do not run as root, don't use sudo or su"
echo $RESET
exit
fi
if ! dc_loc="$(type -p "docker-compose")" || [ -z "$dc_loc" ]; then
echo $RED"docker-compose is not installed"
echo $YELLOW"install docker-compose and then start again"
echo $RESET
exit
fi
echo $GREEN"Starting docker in this process, you will need to type Ctrl+C to exit"
echo
echo $GREEN"When this process is up, go to http://127.0.0.1:5000 with your browser to view the dashboard"
echo $CYAN"Press ENTER to continue..."
read -n 1
echo $RESET
docker stop voterdocker_node_1
docker stop voterdocker_redis_1
docker-compose up
}
bgstart() {
if [ "$EUID" -ne 0 ]
then
echo $GREEN"Background start..."
else
echo $RED"Do not run as root, don't use sudo or su"
echo $RESET
exit
fi
if ! dc_loc="$(type -p "docker-compose")" || [ -z "$dc_loc" ]; then
echo $RED"docker-compose is not installed"
echo $YELLOW"install docker-compose and then start again"
echo $RESET
exit
fi
echo $RESET
docker stop voterdocker_node_1
docker stop voterdocker_redis_1
nohup docker-compose up > /dev/null 2>&1 &
echo
echo $GREEN"Go to http://127.0.0.1:5000 with your browser to view the dashboard"
echo $RESET
}
bgstop() {
if [ "$EUID" -ne 0 ]
then
echo $GREEN"Background stop..."
else
echo "Do not run as root, don't use sudo or su"
echo $RESET
exit
fi
echo $YELLOW"Stopping Voter docker..."
echo $RESET
docker stop voterdocker_node_1
docker stop voterdocker_redis_1
echo $GREEN"Stopped Voter docker"
echo $RESET
}
logs() {
if [ "$EUID" -ne 0 ]
then
echo $GREEN"Logs..."
else
echo "Do not run as root, don't use sudo or su"
echo $RESET
exit
fi
echo $RESET
docker logs voterdocker_node_1
docker logs voterdocker_redis_1
echo $CYAN"--- end of logs"
echo $RESET
}
if [ "$#" -ne 1 ]; then
help
fi
case $1 in
setup)
setup
;;
update)
update
;;
build)
build
;;
start)
start
;;
bgstart)
bgstart
;;
bgstop)
bgstop
;;
logs)
logs
;;
*)
echo "Invalid cmd"
help
;;
esac