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:
parent
12be452e56
commit
39c2c4c19e
2
lock
2
lock
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
source shared
|
. $(dirname $(readlink "$0"))/shared
|
||||||
|
|
||||||
echo "Initializing Space Systems..."
|
echo "Initializing Space Systems..."
|
||||||
echo "22" > /sys/class/gpio/unexport
|
echo "22" > /sys/class/gpio/unexport
|
||||||
|
|
5
shared
5
shared
|
@ -1,13 +1,14 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
basedir=$(dirname $(readlink "$0"))
|
||||||
config="dooris.conf"
|
config="dooris.conf"
|
||||||
|
|
||||||
# warn if local config file is missing
|
# warn if local config file is missing
|
||||||
if [ ! -f "${config}" ]; then
|
if [ ! -f "${basedir}/${config}" ]; then
|
||||||
echo "WARNING: ${config} is missing!" >&2
|
echo "WARNING: ${config} is missing!" >&2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# get password config value in a safe way
|
# 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
|
if [ -z "${password}" ]; then
|
||||||
echo "WARNING: password in ${config} is missing!" >&2
|
echo "WARNING: password in ${config} is missing!" >&2
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue