From e787e19c99a9df4f49ac77237c58d43df3829e9f Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 25 Dec 2011 23:43:10 +0000 Subject: [PATCH] keyfunc.sh.in: Add come commentary to the configuration section. Organization: Straylight/Edgeware From: Mark Wooding --- keyfunc.sh.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/keyfunc.sh.in b/keyfunc.sh.in index 44117e9..bad5af1 100644 --- a/keyfunc.sh.in +++ b/keyfunc.sh.in @@ -28,11 +28,14 @@ quis=${0##*/} ###-------------------------------------------------------------------------- ### Configuration variables. +## Automatically configured pathnames. PACKAGE="@PACKAGE@" VERSION="@VERSION@" bindir="@bindir@" +## Read user configuration. if [ -f $ETC/keys.conf ]; then . $ETC/keys.conf; fi +## Maybe turn on debugging. case "${KEYS_DEBUG+t}" in t) set -x ;; esac ###-------------------------------------------------------------------------- -- [mdw]