including files from actual basedir

this supports arbitrary symlinking of the scripts and
retrives the actual dirname where the files are laying.
This commit is contained in:
anthraxx 2015-02-06 23:48:47 +01:00
parent 12be452e56
commit 39c2c4c19e
3 changed files with 5 additions and 4 deletions

2
lock
View file

@ -1,5 +1,5 @@
#!/bin/sh
source shared
. $(dirname $(readlink "$0"))/shared
echo "Initializing Space Systems..."
echo "22" > /sys/class/gpio/unexport

5
shared
View file

@ -1,13 +1,14 @@
#!/bin/sh
basedir=$(dirname $(readlink "$0"))
config="dooris.conf"
# warn if local config file is missing
if [ ! -f "${config}" ]; then
if [ ! -f "${basedir}/${config}" ]; then
echo "WARNING: ${config} is missing!" >&2
fi
# get password config value in a safe way
password="$(grep password ${config} 2>/dev/null|cut -d= -f2|tr -d ' \t')"
password="$(grep password ${basedir}/${config} 2>/dev/null|cut -d= -f2|tr -d ' \t')"
if [ -z "${password}" ]; then
echo "WARNING: password in ${config} is missing!" >&2
fi

2
unlock
View file

@ -1,5 +1,5 @@
#!/bin/sh
source shared
. $(dirname $(readlink "$0"))/shared
echo "Initializing Space Systems..."
echo "27" > /sys/class/gpio/unexport