Commit 9d5bd88e4acf268569ca763e128a89569682b624
1 parent
737278c6
Exists in
master
and in
1 other branch
update installation script
Showing
1 changed file
with
11 additions
and
7 deletions
Show diff stats
install/installation.sh
... | ... | @@ -42,7 +42,7 @@ fi |
42 | 42 | INSTALL_DATA_IRAP=1 |
43 | 43 | |
44 | 44 | # Revenir a la racine du projet (car on est dans le repertoire install/) : |
45 | -cd ../ | |
45 | +#cd ../ | |
46 | 46 | #if [ $0 != "install/installation.sh" ] ; then |
47 | 47 | # cd ../ |
48 | 48 | #fi |
... | ... | @@ -51,12 +51,12 @@ cd ../ |
51 | 51 | #Configurer l'application |
52 | 52 | # Donner le nom du groupe webService |
53 | 53 | echo |
54 | -echo "LabInvent Copyright (C) 2012-2019 IRAP (Toulouse - France)" | |
54 | +echo "LabInvent Copyright (C) 2012-2020 IRAP (Toulouse - France)" | |
55 | 55 | echo "Auteurs : Etienne Pallier <etienne.pallier@irap.omp.eu>, Elodie Bourrec <elodie.bourrec@irap.omp.eu>" |
56 | 56 | echo "Licence GPL (http://www.gnu.org/copyleft/gpl.html)" |
57 | 57 | echo "Ce logiciel est mis a disposition tel quel, SANS AUCUNE GARANTIE." |
58 | 58 | echo "C'est un logiciel libre, et vous pouvez le redistribuer sous certaines conditions." |
59 | -echo "Il est construit sur le framework Php open source CakePhp (v3.2) http://cakephp.org" | |
59 | +echo "Il est construit sur le framework Php open source CakePhp (v3, http://cakephp.org) avec le langage Php v7" | |
60 | 60 | echo |
61 | 61 | |
62 | 62 | echo "Votre serveur Mysql doit etre demarre (ainsi que votre serveur web)" |
... | ... | @@ -89,12 +89,15 @@ read |
89 | 89 | |
90 | 90 | # Installation des plugins dans vendor/ (cakephp, phpunit, phpqrcode, fpdf, ...) |
91 | 91 | echo "Installation des plugins dans vendor/ ..." |
92 | -cd install/ | |
92 | +#cd install/ | |
93 | 93 | chmod +x plugins_set.sh |
94 | 94 | chmod +x plugins_install.sh |
95 | 95 | ./plugins_install.sh |
96 | -cd ../ | |
96 | +#cd ../ | |
97 | + | |
97 | 98 | |
99 | +# Revenir a la racine du projet (car on est dans le repertoire install/) : | |
100 | +cd ../ | |
98 | 101 | |
99 | 102 | |
100 | 103 | |
... | ... | @@ -374,7 +377,8 @@ if [ $BDD == "O" ] ; then |
374 | 377 | cat ./create_database.sql > ./build.sql |
375 | 378 | fi |
376 | 379 | # (2) Instructions de création des tables |
377 | - cat ./labinvent_last_version_from_scratch.sql >> ./build.sql | |
380 | + #cat ./labinvent_last_version_from_scratch.sql >> ./build.sql | |
381 | + cat ./create_tables.sql >> ./build.sql | |
378 | 382 | # (3) Insertions des données de base indispensables (surtout la table configurations) |
379 | 383 | cat ./insert_tables_default_data_general.sql >> ./build.sql |
380 | 384 | |
... | ... | @@ -459,7 +463,7 @@ echo |
459 | 463 | echo "*** FIN DE L'INSTALLATION ***" |
460 | 464 | echo |
461 | 465 | |
462 | -echo "Maintenant, veuillez poursuivre en suivant (rigoureusement) les indications données sur le wiki du projet : https://projects.irap.omp.eu/projects/inventirap/wiki/Installation#C-TESTS" | |
466 | +#echo "Maintenant, veuillez poursuivre en suivant (rigoureusement) les indications données sur le wiki du projet : https://projects.irap.omp.eu/projects/inventirap/wiki/Installation#C-TESTS" | |
463 | 467 | |
464 | 468 | #if [ $mode == 'install' ] ; then |
465 | 469 | # echo "Si vous voulez le conserver, le script de creation de la BD est database/build.sql" | ... | ... |