/usr/share/doc/libmyproxy-dev/extras/myproxy.cron is in libmyproxy-doc 6.1.16-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/sh
# This cron script deletes invalid MyProxy credentials
# (expired, revoked, etc.).
# Set GLOBUS_LOCATION as appropriate for your installation.
GLOBUS_LOCATION="/usr/local/globus"
export GLOBUS_LOCATION
. ${GLOBUS_LOCATION}/libexec/globus-script-initializer
${GLOBUS_LOCATION}/sbin/myproxy-admin-query -i -r 2>&1 | logger -t myproxy.cron -p cron.info
exit 0
|