concierge/shared
2016-03-01 20:10:57 +01:00

21 lines
616 B
Bash
Executable file

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