diff options
author | M.Gergo | 2018-03-28 20:48:27 +0200 |
---|---|---|
committer | M.Gergo | 2018-03-28 20:48:27 +0200 |
commit | 8e3d4bca1304fab45d4d52111a8d08ca3bd29280 (patch) | |
tree | f7697bfc1cbf5ed3578d20e0faa7f5ad07ccee1a /mayor-installer-fcgi/setup | |
parent | cf30dceb15fa65f503c2a3f31f95b08ce1c65d35 (diff) | |
download | mayor-8e3d4bca1304fab45d4d52111a8d08ca3bd29280.tar.gz mayor-8e3d4bca1304fab45d4d52111a8d08ca3bd29280.zip |
installer javítás 2
Diffstat (limited to 'mayor-installer-fcgi/setup')
-rwxr-xr-x | mayor-installer-fcgi/setup | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/mayor-installer-fcgi/setup b/mayor-installer-fcgi/setup new file mode 100755 index 00000000..3c13a155 --- /dev/null +++ b/mayor-installer-fcgi/setup @@ -0,0 +1,34 @@ +#!/bin/bash +clear +echo "-------------------------------------------" +echo " MaYoR Setup " +echo "-------------------------------------------" + +MAYORDIR="/var/mayor" +TMPDIR="/tmp" +MYSQLROOTPW="" +VERSION="current" +export MAYORDIR +export TMPDIR +export MYSQLROOTPW +export VERSION + +echo -e "A MaYoR keretrendszer és elektronikus napló telepítője a továbbiakban +több lépésben, az egyes lépésekre jóváhagyást kérve fogja végrehajtani a +telepítés és konfigurálás lépéseit. + +A telepítő egy tipikus telepítés esetén alkalmazható, speciális igények esetén +célszerűbb az egyes lépéseket a telepítési útmutató alapján manuálisan végezni.\n" + +read -n 1 -p "Folytatja? (i/N)" -s DO +if [ "$DO" != "i" ]; then echo " ok, kiléptem..."; exit 1; fi +echo -e "\n" + +for f in install.d/* +do + echo -e "\n----------------------------------------------\n$f\n----------------------------------------------\n" + ./$f $@ + if [ "$?" == 255 ]; then echo "Fatális hiba! A telepítő kilép."; exit 255; fi; +done + +echo -e "MaYoR (c) setup\n" |