Upstream Makefiles install into sbin by default.
If check_bos is successful, report the number of instances running
normally. Patch from Steve Rader.
+
+ Look for rxdebug in /usr/sbin and /usr/local/sbin since OpenAFS
+ installs it into sbindir by default.
# The full path to rxdebug. Make sure that this is on local disk so that
# monitoring doesn't have an AFS dependency.
-our ($RXDEBUG) = grep { -x $_ } qw(/usr/bin/rxdebug /usr/local/bin/rxdebug);
+our ($RXDEBUG) = grep { -x $_ }
+ qw(/usr/bin/rxdebug /usr/sbin/rxdebug /usr/local/bin/rxdebug
+ /usr/local/sbin/rxdebug);
$RXDEBUG ||= '/usr/bin/rxdebug';
##############################################################################