TZ=UTC
LC_ALL=C
export TZ LC_ALL
+SQML_CFGFILE=./sqm_lagthrottle.conf
__is_num() {
done
+if [ -r "${SQML_CFGFILE}" ] && sh -n "${SQML_CFGFILE}"
+then
+ printf 'Evaluating configuration delta from file "%s"...\n' "${SQML_CFGFILE}"
+ eval "set -x; $(grep -E '[A-Z][A-Z_]+=' "${SQML_CFGFILE}"); set +x"
+ _cfg_ok=$?
+ set +x
+ if [ ${_cfg_ok} -ne 0 ]
+ then
+ printf 'FATAL: Configuration delta in "%s" could not be evaluated without errors."\n'
+ exit 1
+ fi
+fi
+
+
if ! test -r ./__sqm_lagthrottle.awk
then
printf 'FATAL: "__sqm_lagthrottle.awk" not found; are you in the correct directory?"\n'