In Fedora, the OpenAFS 'vos' binary is stored under:
/usr/sbin
and so I have added that directory to the search path in
check_afs_quotas and check_afs_space.
# The full path to vos. Make sure that this is on local disk so that
# monitoring doesn't have an AFS dependency.
-our ($VOS) = grep { -x $_ } qw(/usr/bin/vos /usr/local/bin/vos);
+our ($VOS) = grep { -x $_ } qw(/usr/bin/vos /usr/local/bin/vos /usr/sbin/vos);
$VOS ||= '/usr/bin/vos';
##############################################################################
# The full path to vos. Make sure that this is on local disk so that
# monitoring doesn't have an AFS dependency.
-our ($VOS) = grep { -x $_ } qw(/usr/bin/vos /usr/local/bin/vos);
+our ($VOS) = grep { -x $_ } qw(/usr/bin/vos /usr/local/bin/vos /usr/sbin/vos);
$VOS ||= '/usr/bin/vos';
##############################################################################