Lintian complained about the use of $HOSTNAME, even though I was setting it,
not using the pre-set value by Bash. Rather than add an override, I'll just
rename the variable. This will allow Lintian to continue to check this file
if any bashisms do creep in.
exit 0
fi
-HOSTNAME="$(hostname --short)"
+HOST="$(hostname --short)"
sigh()
{
- echo "Good thing I asked; I won't $MOLLYGUARD_CMD $HOSTNAME ..." >&2
+ echo "Good thing I asked; I won't $MOLLYGUARD_CMD $HOST ..." >&2
exit 1
}