-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh.2
555 lines (484 loc) · 12.1 KB
/
install.sh.2
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
#!/bin/bash
#sudo wget https://raw.github.com/ldleman/yana-server/master/install.sh && sudo chmod +x install.sh && sudo ./install.sh
## Description: Script d'installation pour YANA
## Author:Sarrailh Remi
## Email:maditnerd@gmail.com
## License:http://www.tldrlegal.com/l/Gplv3
# Options
wait=2 #Attend 2 secondes avant chaque action
check=1 #Verifie connexion internet/etat cache apt
dir=yana-server #Dossier ou sera installe yana
#Options dev
repo=ldleman #Repo utilisee
branch=master #Branche utilisee
web_right=755 #Droits pour l'utilisateur web
web_user=www-data #Utilisateur web
############### DEPENDANCES
########## BIBLIOTHEQUE LAZASS (version FR Standalone Abridged Unattended) ###################
##! LAZASS LIBRARY 1.8
##* Description: Library for installation/configuration scripts
##* Author:Sarrailh Remi
##* License:http://www.tldrlegal.com/l/Gplv3
##* Site web:http://maditnerd.github.io/lazass/
###****
VER="1.8-FR-SA-AB-UN"
AUTHOR="Sarrailh Remi"
LICENSE="Gplv3"
###################
##!! DISPLAY FUNCTIONS
#########################################################
##> These functions display text without doing nothing else
#########################################################
###############
##!!! COLOR
###############
OK="\\033[1;32m" ##* $OK -> GREEN
NORMAL="\\033[0;39m" ##* $NORMAL -> WHITE
ERR="\\033[1;31m" ##* $ERR -> RED
INFO="\\033[1;34m" ##* $INFO -> BLUE
WARN="\\033[1;33m" ##* $WARN -> YELLOW
PICOLOR="\\033[1;35m" ##* $PICOLOR ->PINK
##############
##!!! TEXT
##############
#>* $1 TEXT
#>* $2 COLOR (optional)
##!!!! nlbecho() : Text with no line break
nlbecho() {
echo -ne $2
echo -ne "$1 "
echo -ne $NORMAL
}
##!!!! colecho() : Colored text
colecho() {
echo -ne $2
echo $1
echo -ne $NORMAL
}
##!!!! listecho() : Make a List item with ->
listecho() {
nlbecho "->" $OK
echo $1
}
##########################
##!!! INFORMATION MINIBOX
##########################
##!!!! ok() : GREEN [OK]
function ok() {
echo -ne " ["
echo -ne $OK
echo -ne "OK"
echo -ne $NORMAL
echo "]"
}
##!!!! skip() BLUE [SKIPPED]
function skip() {
echo -ne " ["
echo -ne $INFO
echo -ne "DEJA FAIT"
echo -ne $NORMAL
echo "]"
}
##!!!! warning() YELLOW [WARNING]
function warning() {
echo -ne " ["
echo -ne $WARN
echo -ne "ATTENTION"
echo -ne $NORMAL
echo "]"
}
##!!!! error() RED [ERROR]
function error() {
echo -ne " ["
echo -ne $ERR
echo -ne "ERREUR"
echo -ne $NORMAL
echo "]"
}
#################
##!!! LINE BREAK
#################
##!!!! jumpline() Simple Line break
jumpline() {
echo ""
}
##!!!! line_break() Line break with a line
line_break() {
echo -e $INFO"____________________________________"
echo -e $NORMAL
}
#########
##!!! BOX
#########
#>* $1 TEXT
##!!!! description() : Create a description box, Use it to describe your SCRIPT
description() {
echo -ne $WARN
echo "LAZASS INSTALLER $VER par $AUTHOR - $LICENSE"
echo "__________________________________"
echo "__________________________________"
echo "$1"
echo "__________________________________"
echo "__________________________________"
echo -ne $NORMAL
}
##!!!! messagebox() : Create a messagebox, Use it to describe an ACTION
messagebox() {
echo -e $INFO"____________________________________"
echo $1
line_break
}
##!!!! error_box() : Create an error box to show an CRITICAL ERROR
##>* $1 TEXT/ERROR CODE
error_box() {
echo -ne $ERR
echo "--- CODE D'ERREUR: $1 ---"
echo -ne $NORMAL
}
##!!!! console() Create a console box use it to show COMMAND OUTPUT
console() {
echo -ne $OK
echo "/////////////////////"
echo -ne $NORMAL
}
##!!!! thank() : Thanks message, use it at the END OF SCRIPT
function thank () {
if [[ $noreset != 1 ]]
then
echo ""
echo -ne $INFO
echo "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
echo "Amusez vous bien les makers !"
echo "------------------------------"
echo -ne $NORMAL
exit 0
fi
}
###################
##!! ERRORS HANDLER
#################################################
##> Theses functions handles errors
#################################################
##!!!! verify_root() : Verify if you have root permissions
verify_root() {
if [ $(id -u) -ne 0 ]; then
error_box
echo "Oups vous avez oublie de vous mettre en root!"
echo "Essayez de faire 'sudo $0'"
echo -ne $NORMAL
error_box
echo -ne $NORMAL
exit 1
fi
}
##!!!! aptget_error() : Handle APT error (launched when using installer)
aptget_error() {
apterror=$1
case $apterror in
100)
echo -ne $ERR
echo ""
error_box $apterror
echo "DPKG A L'AIR BLOQUE! !"
listecho "AVEZ VOUS LANCE UNE AUTRE INSTALLATION (qui ne serait pas finit) ?"
listecho "AVEZ VOUS BIDOUILLE /etc/apt/sources.list ?"
listecho "Un petit apt-get update de bon matin ca fait pas de mal"
echo "SI CE N'EST PAS LE CAS, JE PEUX LE BRUTALISER UN PEU!"
error_box $apterror
read -r -p "Le deverouiller ? [Y/n] " response
case $response in
[yY])
rm -vf /var/lib/dpkg/lock
rm -vf /var/cache/apt/archives/lock
echo "RELANCEMENT DE L'INSTALLATION..."
sleep 2
$0
;;
*)
echo ""
error_box $apterror
echo "L'INSTALLATION A ECHOUE!!!"
echo "Vous aller devoir reparer APT-GET par vous meme avant de reessayer! :-("
error_box $apterror
exit 1
;;
esac
;;
0)
echo "OK"
;;
1)
error_box $apterror
echo "Installation Annulee !"
error_box $apterror
echo -ne $NORMAL
read
exit 1
;;
*)
error_box $apterror
echo "ERREUR APT-GET INCONNU!!!"
echo "Si tu peux m'envoyer le code d'erreur / les details a maditnerd@gmail.com, ca m'aiderait bien!"
read -r -p "Arreter l'installation ? [Y/n]" response
error_box $apterror
echo -ne $NORMAL
case $response in
[yY])
exit 1
;;
esac
;;
esac
}
#########################
##!! Get Infos
###########################################
##> Get informations from the system
###########################################
##!!!! firstip() : Return First IP
firstip() {
echo $(hostname -I |cut -f1 -d' ')
}
##!!!! pint_test() : Ping a website and tell if you are (it is) online or not
##>* $1: address to ping
ping_test() {
messagebox "Connexion internet"
console
ping -c1 $1 && internet=1 || internet=0
console
if [[ $internet == 1 ]]
then
echo -ne "INTERNET"
ok
else
echo -ne "INTERNET"
error
echo -ne $ERR
echo "Connexion internet introuvable, le script va s'arreter ..."
echo -ne $NORMAL
read
exit 1
fi
}
#######################
##!! Actions functions
#############################################
##> This functions performs complex actions
#############################################
#########################
##!!! UNATTENDED ACTIONS
#########################
##!!!! updater() : Update APT
updater() {
ping_test "google.com"
messagebox "Verification du cache APT!"
console
apt-get -q -y update
aptget_error $?
console
}
##!!!! installer() Install a packet (with error handling)
##>* $1 package (apt-get install package)
installer() {
messagebox "INSTALLATION DE: $1"
dpkg-query -l "$1" | grep "ii" > /dev/null 2>&1
#IS THE PACKAGE ALREADY INSTALLED ?
if [[ $? == 1 ]]
then
console
apt-get -q -y install "$1"
aptget_error $?
console
dpkg-query -l "$1" | grep "ii" > /dev/null 2>&1
#WAS THE PACKAGE INSTALLED ?
if [[ $? == 0 ]]
then
echo -ne "RESULTAT: $1"
ok
else
echo -ne "RESULTAT: $1"
error
read
fi
else
echo -ne "RESULTAT: $1"
skip
fi
}
check_package() {
console
if [ -e "/usr/sbin/$webserver_to_check" ]
then
package_isinstalled=1
messagebox "$webserver_to_check est installé"
else
package_isinstalled=0
messagebox "$webserver_to_check n'est pas installé"
fi
console
}
check_webserver() {
webserver_to_check="apache2"
check_package
webserver_to_check="nginx"
check_package
if [[ $package_isinstalled == 1 ]]
then
colecho "Un serveur web est déjà installé! Lighttpd/Sqlite/Php ne sera pas installé afin d'éviter des conflits !" $ERR
continue_prompt
fi
}
##!!!! gitcloner() : Git Cloner
##>* $1 Program name (for showing it)
##>* $2 Repo url (ex: http://github.com/nameofuser/nameofrepo)
##>* $3 Name of the directory where the repo will be cloned
##>* $4 Branch of the repo
##>* If the directory exists try to update it
yanacloner() {
messagebox "Clone $1"
console
git clone -b $branch $2 $3
giterror=$?
console
if [[ $giterror == 128 ]]
then
line_break
nlbecho "DEJA CLONE!"
skip
line_break
cd $3
git status -sb |grep "master"|grep "behind" > /dev/null 2>&1
if [[ $? == 0 ]]
then
TIMESTAMP=$(date +%H%M%S)'_'$(date +%d%m%y)
messagebox "Mise a jour de $1"
colecho "Une mise a jour est disponible pour YANA!" $WARN
line_break
colecho "La configuration et les plugins ajoutes ne seront pas supprime!" $ERR
colecho "Mais toutes les modifications faites au coeur de yana le seront par contre!" $ERR
jumpline
dir_back=$dir-$TIMESTAMP
colecho "Pas de panique! votre version sera sauvegarde dans /root/$dir_back" $WARN
line_break
continue_prompt
description "Backup de YANA"
sleep $wait
console
cp -Rv /var/www/$dir /root/$dir_back
console
jumpline
description "Mis à jour"
git reset --hard origin/master
git pull
description "Récuperation de plugins.states.json"
sleep $wait
cp /root/$dir_back/plugins/plugins.states.json /var/www/$dir/plugins/plugins.states.json
else
colecho "Aucune mise à jour disponible" $WARN
fi
fi
}
#########################
##!!! INTERACTIVE ACTIONS
#########################
##!!!! continue_prompt() : Ask if the user want to continue the script
##> AVOID USING IT (see issue 1)
continue_prompt() {
read -r -p "On continue? [O/n] " response
case $response in
[yYOo])
echo "On continue..."
;;
*)
echo ""
colecho "Installation arrêtée" $info
echo -ne $NORMAL
exit 1
;;
esac
}
###########################################################
# Programme Principale ############################
clear
verify_root
#Verifie que vous etes bien en root et que vous etes connecte aux interwebs et que votre cache APT est OK
if [[ $check == 1 ]]
then
description "Vérifications préalables (vous pouvez les deactiver en modifiant la variable check dans le script)"
updater
jumpline
fi
#Message avant installation
description "Installation YANA"
line_break
colecho "Parce qu'il vous aime bien, ce script va installer YANA et ses dépendances (lighttpd/sqlite/php)" $INFO
line_break
sleep $wait
jumpline
check_webserver
if [[ $package_isinstalled != 1 ]]
then
#Installe lighttpd sqlite
description "Installation de LIGHTTPD (serveur web) Whhaouuhh !"
sleep $wait
installer "lighttpd"
rm -vf /var/www/index.lighttpd.html
installer "php5-common"
installer "php5-cgi"
installer "php5"
messagebox "Configuration de PHP ! Rock'n'roll !"
lighty-enable-mod fastcgi-php
jumpline
description "Installation de SQLite (base de donnees)"
sleep $wait
installer "sqlite3"
installer "libsqlite3-0"
installer "libsqlite3-dev"
installer "php5-sqlite"
messagebox "On relance lighttpd afin qu'il integre tout ca!"
service lighttpd force-reload
line_break
nlbecho "Vous venez d'installer"
colecho "un serveur WEB avec PHP/SQLITE ! Yeeahh !" $OK
line_break
jumpline
fi
description "Installation de git-core (client pour dépot GIT)"
sleep $wait
installer git-core
jumpline
#Install YANA
description "On clone YANA! dans le dossier /var/www/$dir!"
sleep $wait
yanacloner "YANA Server" "https://github.com/$repo/yana-server.git" "/var/www/$dir" $branch
messagebox "On met à jour les permissions pour notre serveur web"
sleep $wait
chmod -R $web_right /var/www
chown -R $web_user:$web_user /var/www/$dir
#Permissions GPIO
description "Permissions GPIO"
sleep $wait
nlbecho "Nous allons donner les permissions root à"
colecho "YANA" $INFO
colecho "mais uniquement aux programmes dont les sources en CPP sont présentes" $ERR
sleep $wait
messagebox "Recherche et modification des Permissions"
console
unset a i
while IFS= read -r -d $'\0' file; do
file=$(echo $file |sed 's/.cpp//')
echo "$file"
chown root:$web_user $file
chmod +sx $file
done < <(find /var/www/$dir -name *.cpp -type f -print0)
console
line_break
nlbecho "Permissions GPIO"
ok
line_break
nlbecho "Vous avez installé / mis à jour"
colecho "YANA (You Are Not Alone)" $INFO
ip=$(firstip)
colecho "Rendez vous sur: http://$ip/$dir"
colecho "Pour finir l'installation! :D"
thank