mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
Plugin proftpd_count: fix autoconf handling
This commit is contained in:
parent
68eddb5865
commit
e62a8e3142
@ -25,13 +25,12 @@ LOGTAIL=${logtail:-`which logtail`}
|
||||
STATEFILE=$MUNIN_PLUGSTATE/xferlog-count.offset
|
||||
|
||||
if [ "$1" = "autoconf" ]; then
|
||||
if [ -f "${LOGFILE}" -a -n "${LOGTAIL}" -a -x "${LOGTAIL}" ] ; then
|
||||
echo yes
|
||||
exit 0
|
||||
else
|
||||
echo no
|
||||
exit 1
|
||||
fi
|
||||
if [ -f "$LOGFILE" ] && [ -n "$LOGTAIL" ] && [ -x "$LOGTAIL" ] ; then
|
||||
echo yes
|
||||
else
|
||||
echo "no (missing logfile or 'logtail' executable)"
|
||||
fi
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$1" = "config" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user