diff options
author | M.Gergo | 2018-07-06 11:13:06 +0200 |
---|---|---|
committer | M.Gergo | 2018-07-06 11:13:06 +0200 |
commit | 50310b0e4513ee3fcce67351ae61e8fff851130e (patch) | |
tree | fd2e4a73f94a61cd5040f863579149ed97c701a3 /mayor/bin/unlock.sh | |
parent | 630f5353ed7a264b0fa17badd62f71a02265a4f7 (diff) | |
download | mayor-50310b0e4513ee3fcce67351ae61e8fff851130e.tar.gz mayor-50310b0e4513ee3fcce67351ae61e8fff851130e.zip |
Mappák átnevezve: mayor --> mayor-mod; mayor-installer --> mayor-installer-mod; mayor-installer-fcgi --> mayor-installer-fcgi-mod
Diffstat (limited to 'mayor/bin/unlock.sh')
-rw-r--r-- | mayor/bin/unlock.sh | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/mayor/bin/unlock.sh b/mayor/bin/unlock.sh deleted file mode 100644 index 98783f4b..00000000 --- a/mayor/bin/unlock.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/bash - -help_usage() { -cat <<EOF - -LOCK használata: mayor lock [options] - -A parancs segítségével feloldhatjuk a MaYoR rendszert, ilyenkor a webes engedélyezésre kerül. -Hasznos lehet különböző Rendszergazdai műveletek elvégzésekor. - -*** FIGYELEM! *** - Veszélyes lehet, ha a feloldás, a frissítés, vagy a mentés vége előtt történik!! - - --help: ^Ez a help szöveg. - -EOF -} - -if [ $? -ne 0 ]; then help_usage; exit; fi - -while [ $# -ge 1 ]; do - case $1 in - --help | -h ) help_usage - exit - ;; - - -- ) shift - break - ;; - - * ) echo "HIBA: ismeretlen opció: $1" - exit - ;; - esac - shift -done - -if [ -e $LOCKFILE ]; then - if [ ! -z $LOCKFILE ]; then - if [ $VERBOSE -gt 0 ]; then echo -e "* A web-es hozzáférés engedélyezése:"; fi - if [ $VERBOSE -gt 1 ]; then echo -e "- A Lock-file törlése..."; fi - - rm $LOCKFILE - if [ $VERBOSE -gt 0 ]; then echo -e "kész.\n"; fi - fi -else - if [ $VERBOSE -gt 0 ]; then echo -e "* Már engedélyezett.\n"; fi -fi - |