File: myproxy.cron

package info (click to toggle)
myproxy 6.1.22-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,628 kB
  • ctags: 1,812
  • sloc: ansic: 25,183; sh: 11,726; perl: 3,673; makefile: 361
file content (14 lines) | stat: -rwxr-xr-x 372 bytes parent folder | download | duplicates (7)
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