X-Git-Url: https://git.llucax.com/z.facultad/75.08/llamadas.git/blobdiff_plain/a544d76b16b2bb4ce84c3d9f45a464c4cc0498a2..fbda2151a8f5f6e2e7fdf5b1d63a38b57fbac262:/inst/util.sh?ds=sidebyside diff --git a/inst/util.sh b/inst/util.sh index 1d9219c..2c159f5 100755 --- a/inst/util.sh +++ b/inst/util.sh @@ -1,5 +1,8 @@ #/bin/sh +BASE_DIR="$HOME/.antifraude" +LOCK_DIR="$BASE_DIR/lock" + # Lee del teclado un valor # # parĂ¡metros : @@ -57,18 +60,18 @@ lock () { echo "No" return fi - echo "lero lero" > "$INST_DIR/lock/$1.pid" + echo "$$" > "$LOCK_DIR/$1.pid" } # Desbloquea el script unlock () { - rm -rf "$INST_DIR/lock/$1.pid" + rm -rf "$LOCK_DIR/$1.pid" } # Consulta si un script esta lockeado is_lock () { - if [ -e "$INST_DIR/lock/$1.pid" ] ; then + if [ -e "$LOCK_DIR/$1.pid" ] ; then # Lock file encontrado! return 0 fi