aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-installer.fcgi/setup
diff options
context:
space:
mode:
authorM.Gergo2018-03-28 20:48:05 +0200
committerM.Gergo2018-03-28 20:48:05 +0200
commitcf30dceb15fa65f503c2a3f31f95b08ce1c65d35 (patch)
tree3d51eabdf4c9bc7a3daca03d265c052fb0601ac2 /mayor-installer.fcgi/setup
parent20a9412f1f5bc7b7e40ffb24e262cdf20420983c (diff)
downloadmayor-cf30dceb15fa65f503c2a3f31f95b08ce1c65d35.tar.gz
mayor-cf30dceb15fa65f503c2a3f31f95b08ce1c65d35.zip
installer javítás 1
Diffstat (limited to 'mayor-installer.fcgi/setup')
-rwxr-xr-xmayor-installer.fcgi/setup34
1 files changed, 0 insertions, 34 deletions
diff --git a/mayor-installer.fcgi/setup b/mayor-installer.fcgi/setup
deleted file mode 100755
index 3c13a155..00000000
--- a/mayor-installer.fcgi/setup
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/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"